/*M!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19-11.4.9-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: burteany_wp829
-- ------------------------------------------------------
-- Server version	11.4.9-MariaDB-cll-lve-log

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!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' */;
/*M!100616 SET @OLD_NOTE_VERBOSITY=@@NOTE_VERBOSITY, NOTE_VERBOSITY=0 */;

--
-- Table structure for table `wpwn_actionscheduler_actions`
--

DROP TABLE IF EXISTS `wpwn_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) NOT NULL,
  `status` varchar(20) NOT NULL,
  `scheduled_date_gmt` datetime 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) DEFAULT NULL,
  `schedule` longtext DEFAULT NULL,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `attempts` int(11) NOT NULL DEFAULT 0,
  `last_attempt_gmt` datetime 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) 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`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_actionscheduler_actions`
--

LOCK TABLES `wpwn_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wpwn_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wpwn_actionscheduler_actions` VALUES
(25,'action_scheduler/migration_hook','complete','2021-08-25 20:33:31','2021-08-25 20:33:31','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1629923611;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1629923611;}',1,1,'2021-08-25 20:33:34','2021-08-25 20:33:34',0,NULL),
(26,'wc-admin_import_customers','complete','2021-08-26 00:08:53','2021-08-26 00:08:53','[1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1629936533;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1629936533;}',2,1,'2021-08-26 00:09:46','2021-08-26 00:09:46',0,NULL),
(27,'wc-admin_import_customers','complete','2021-08-27 17:31:13','2021-08-27 17:31:13','[1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1630085473;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1630085473;}',2,1,'2021-08-27 17:31:41','2021-08-27 17:31:41',0,NULL),
(28,'wc-admin_import_customers','complete','2021-08-30 20:24:05','2021-08-30 20:24:05','[1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1630355045;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1630355045;}',2,1,'2021-08-30 20:24:28','2021-08-30 20:24:28',0,NULL),
(29,'wc-admin_import_customers','complete','2021-08-31 00:00:17','2021-08-31 00:00:17','[1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1630368017;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1630368017;}',2,1,'2021-08-31 00:00:28','2021-08-31 00:00:28',0,NULL),
(30,'wc-admin_import_customers','complete','2021-09-01 00:01:10','2021-09-01 00:01:10','[1]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1630454470;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1630454470;}',2,1,'2021-09-01 00:01:11','2021-09-01 00:01:11',0,NULL);
/*!40000 ALTER TABLE `wpwn_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_actionscheduler_claims`
--

DROP TABLE IF EXISTS `wpwn_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_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=1361 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_actionscheduler_claims`
--

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

--
-- Table structure for table `wpwn_actionscheduler_groups`
--

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

--
-- Dumping data for table `wpwn_actionscheduler_groups`
--

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

--
-- Table structure for table `wpwn_actionscheduler_logs`
--

DROP TABLE IF EXISTS `wpwn_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text NOT NULL,
  `log_date_gmt` datetime 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 AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_actionscheduler_logs`
--

LOCK TABLES `wpwn_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wpwn_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wpwn_actionscheduler_logs` VALUES
(1,25,'action created','2021-08-25 20:32:31','2021-08-25 20:32:31'),
(2,25,'action started via Async Request','2021-08-25 20:33:34','2021-08-25 20:33:34'),
(3,25,'action complete via Async Request','2021-08-25 20:33:34','2021-08-25 20:33:34'),
(4,26,'action created','2021-08-26 00:08:48','2021-08-26 00:08:48'),
(5,26,'action started via WP Cron','2021-08-26 00:09:46','2021-08-26 00:09:46'),
(6,26,'action complete via WP Cron','2021-08-26 00:09:46','2021-08-26 00:09:46'),
(7,27,'action created','2021-08-27 17:31:08','2021-08-27 17:31:08'),
(8,27,'action started via WP Cron','2021-08-27 17:31:41','2021-08-27 17:31:41'),
(9,27,'action complete via WP Cron','2021-08-27 17:31:41','2021-08-27 17:31:41'),
(10,28,'action created','2021-08-30 20:24:00','2021-08-30 20:24:00'),
(11,28,'action started via WP Cron','2021-08-30 20:24:28','2021-08-30 20:24:28'),
(12,28,'action complete via WP Cron','2021-08-30 20:24:28','2021-08-30 20:24:28'),
(13,29,'action created','2021-08-31 00:00:12','2021-08-31 00:00:12'),
(14,29,'action started via Async Request','2021-08-31 00:00:28','2021-08-31 00:00:28'),
(15,29,'action complete via Async Request','2021-08-31 00:00:28','2021-08-31 00:00:28'),
(16,30,'action created','2021-09-01 00:01:05','2021-09-01 00:01:05'),
(17,30,'action started via Async Request','2021-09-01 00:01:11','2021-09-01 00:01:11'),
(18,30,'action complete via Async Request','2021-09-01 00:01:11','2021-09-01 00:01:11');
/*!40000 ALTER TABLE `wpwn_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_commentmeta`
--

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

--
-- Dumping data for table `wpwn_commentmeta`
--

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

--
-- Table structure for table `wpwn_comments`
--

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

--
-- Dumping data for table `wpwn_comments`
--

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

--
-- Table structure for table `wpwn_corefortress_slider_themes`
--

DROP TABLE IF EXISTS `wpwn_corefortress_slider_themes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_corefortress_slider_themes` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL,
  `settings` longtext DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_corefortress_slider_themes`
--

LOCK TABLES `wpwn_corefortress_slider_themes` WRITE;
/*!40000 ALTER TABLE `wpwn_corefortress_slider_themes` DISABLE KEYS */;
INSERT INTO `wpwn_corefortress_slider_themes` VALUES
(1,'Full Width Hero','{\"background\":\"#000000\",\"background_opacity\":100,\"border_size\":0,\"border_color\":\"#000000\",\"border_style\":\"solid\",\"use_fixed_width\":false,\"percent_width\":100,\"fixed_width\":400,\"use_fixed_height\":true,\"fixed_height\":800,\"margin_top\":20,\"margin_right\":0,\"margin_bottom\":20,\"margin_left\":0,\"lazy_loading\":false,\"content_pos_vertical\":\"center\",\"content_pos_horizontal\":\"center\",\"content_width_percent\":30,\"content_background_color\":\"#FFFFFF\",\"content_background_opacity\":0,\"content_margin_top\":0,\"content_margin_right\":0,\"content_margin_bottom\":0,\"content_margin_left\":0,\"navigation_arrows\":true,\"navigation_arrows_style\":1,\"title_font_size\":24,\"title_font_color\":\"#ffffff\",\"title_margin_top\":5,\"title_margin_right\":0,\"title_margin_bottom\":5,\"title_margin_left\":5,\"title_border_size\":0,\"title_border_color\":\"#FFFFFF\",\"title_border_style\":\"solid\",\"title_border_radius\":0,\"description_font_size\":16,\"description_font_color\":\"#ffffff\",\"description_margin_top\":5,\"description_margin_right\":0,\"description_margin_bottom\":5,\"description_margin_left\":5,\"description_border_size\":0,\"description_border_color\":\"#FFFFFF\",\"description_border_style\":\"solid\",\"description_border_radius\":0,\"cta_button_background_color\":\"#0674ec\",\"cta_button_font_color\":\"#FFFFFF\",\"cta_button_font_size\":16,\"cta_button_height\":40,\"cta_button_padding_horizontal\":20,\"cta_button_border_radius\":5,\"cta_button_margin_top\":5,\"cta_button_margin_right\":0,\"cta_button_margin_bottom\":5,\"cta_button_margin_left\":5,\"background_overlay\":true,\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":70,\"use_pagination\":true,\"pagination_type\":\"bullets\",\"pagination_pos\":\"bottom\",\"pagination_background_color\":\"#FFFFFF\",\"pagination_background_opacity\":100,\"pagination_active_background\":\"#0674ec\",\"pagination_active_background_opacity\":100,\"use_thumbnails\":false,\"thumbs_per_view\":4,\"thumbs_position\":\"bottom\",\"thumbs_height\":100}','2021-08-25 21:14:55','2021-08-25 21:14:55'),
(2,'Product Showcase','{\"background\":\"#000000\",\"background_opacity\":100,\"border_size\":0,\"border_color\":\"#000000\",\"border_style\":\"solid\",\"use_fixed_width\":false,\"percent_width\":100,\"fixed_width\":400,\"use_fixed_height\":true,\"fixed_height\":400,\"margin_top\":20,\"margin_right\":0,\"margin_bottom\":20,\"margin_left\":0,\"lazy_loading\":true,\"content_pos_vertical\":\"top\",\"content_pos_horizontal\":\"right\",\"content_background_color\":\"#000000\",\"content_background_opacity\":40,\"content_margin_top\":50,\"content_margin_right\":50,\"content_margin_bottom\":0,\"content_margin_left\":0,\"content_width_percent\":25,\"navigation_arrows\":false,\"navigation_arrows_style\":1,\"title_font_size\":20,\"title_font_color\":\"#FFFFFF\",\"title_margin_top\":20,\"title_margin_right\":20,\"title_margin_bottom\":20,\"title_margin_left\":0,\"title_border_size\":0,\"title_border_color\":\"#FFFFFF\",\"title_border_style\":\"solid\",\"title_border_radius\":0,\"description_font_size\":14,\"description_font_color\":\"#FFFFFF\",\"description_margin_top\":0,\"description_margin_right\":20,\"description_margin_bottom\":20,\"description_margin_left\":0,\"description_border_size\":0,\"description_border_color\":\"#FFFFFF\",\"description_border_style\":\"solid\",\"description_border_radius\":0,\"cta_button_background_color\":\"#FFFFFF\",\"cta_button_font_color\":\"#000000\",\"cta_button_font_size\":16,\"cta_button_height\":40,\"cta_button_padding_horizontal\":20,\"cta_button_border_radius\":0,\"cta_button_margin_top\":0,\"cta_button_margin_right\":20,\"cta_button_margin_bottom\":20,\"cta_button_margin_left\":0,\"background_overlay\":true,\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":10,\"use_pagination\":true,\"pagination_type\":\"fraction\",\"pagination_pos\":\"bottom\",\"pagination_background_color\":\"#FFFFFF\",\"pagination_background_opacity\":10,\"pagination_active_background\":\"#0674ec\",\"pagination_active_background_opacity\":100,\"use_thumbnails\":true,\"thumbs_per_view\":4,\"thumbs_position\":\"bottom\",\"thumbs_height\":100}','2021-08-25 21:14:55','2021-08-25 21:14:55'),
(3,'Minimalist','{\"background\":\"#FFFFFF\",\"background_opacity\":100,\"border_size\":0,\"border_color\":\"#000000\",\"border_style\":\"solid\",\"use_fixed_width\":false,\"percent_width\":100,\"fixed_width\":400,\"use_fixed_height\":true,\"fixed_height\":400,\"margin_top\":0,\"margin_right\":0,\"margin_bottom\":0,\"margin_left\":0,\"lazy_loading\":false,\"content_pos_vertical\":\"bottom\",\"content_pos_horizontal\":\"left\",\"content_background_color\":\"#000000\",\"content_background_opacity\":35,\"content_margin_top\":0,\"content_margin_right\":0,\"content_margin_bottom\":0,\"content_margin_left\":0,\"content_width_percent\":20,\"navigation_arrows\":false,\"navigation_arrows_style\":7,\"title_font_size\":16,\"title_font_color\":\"#FFFFFF\",\"title_margin_top\":10,\"title_margin_right\":0,\"title_margin_bottom\":10,\"title_margin_left\":20,\"title_border_size\":0,\"title_border_color\":\"#FFFFFF\",\"title_border_style\":\"solid\",\"title_border_radius\":0,\"description_font_size\":12,\"description_font_color\":\"#FFFFFF\",\"description_margin_top\":0,\"description_margin_right\":0,\"description_margin_bottom\":10,\"description_margin_left\":20,\"description_border_size\":0,\"description_border_color\":\"#FFFFFF\",\"description_border_style\":\"solid\",\"description_border_radius\":0,\"cta_button_background_color\":\"#FFFFFF\",\"cta_button_font_color\":\"#000000\",\"cta_button_font_size\":16,\"cta_button_height\":40,\"cta_button_padding_horizontal\":20,\"cta_button_border_radius\":0,\"cta_button_margin_top\":0,\"cta_button_margin_right\":0,\"cta_button_margin_bottom\":10,\"cta_button_margin_left\":20,\"background_overlay\":false,\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":39,\"use_pagination\":true,\"pagination_type\":\"progressbar\",\"pagination_pos\":\"top\",\"pagination_background_color\":\"#FFFFFF\",\"pagination_background_opacity\":20,\"pagination_active_background\":\"#000000\",\"pagination_active_background_opacity\":35,\"use_thumbnails\":false,\"thumbs_per_view\":4,\"thumbs_position\":\"bottom\",\"thumbs_height\":100}','2021-08-25 21:14:55','2021-08-25 21:14:55');
/*!40000 ALTER TABLE `wpwn_corefortress_slider_themes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_corefortress_sliders`
--

DROP TABLE IF EXISTS `wpwn_corefortress_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_corefortress_sliders` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `theme_id` bigint(20) unsigned NOT NULL,
  `name` text DEFAULT NULL,
  `initialSlide` int(20) NOT NULL DEFAULT 0,
  `direction` varchar(100) NOT NULL DEFAULT 'horizontal',
  `speed` int(20) NOT NULL DEFAULT 300,
  `effect` varchar(100) NOT NULL DEFAULT 'slide',
  `autoSlide` tinyint(1) NOT NULL DEFAULT 1,
  `autoSlideDelay` int(20) NOT NULL DEFAULT 5000,
  `stopOnHover` tinyint(1) NOT NULL DEFAULT 1,
  `grabCursor` tinyint(1) NOT NULL DEFAULT 1,
  `loop` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `theme_id` (`theme_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_corefortress_sliders`
--

LOCK TABLES `wpwn_corefortress_sliders` WRITE;
/*!40000 ALTER TABLE `wpwn_corefortress_sliders` DISABLE KEYS */;
INSERT INTO `wpwn_corefortress_sliders` VALUES
(1,1,'New Slider',0,'horizontal',300,'slide',1,5000,1,1,1);
/*!40000 ALTER TABLE `wpwn_corefortress_sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_corefortress_slides`
--

DROP TABLE IF EXISTS `wpwn_corefortress_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_corefortress_slides` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slider_id` bigint(20) unsigned NOT NULL,
  `title` text DEFAULT NULL,
  `description` text DEFAULT NULL,
  `link_type` varchar(100) NOT NULL DEFAULT 'slide',
  `cta_text` text DEFAULT NULL,
  `url` text DEFAULT NULL,
  `url_in_new_window` tinyint(1) NOT NULL DEFAULT 0,
  `media_type` varchar(100) NOT NULL DEFAULT 'image',
  `media_image_id` bigint(20) unsigned DEFAULT NULL,
  `media_image_url` text DEFAULT NULL,
  `media_video_url` text DEFAULT NULL,
  `media_post_id` bigint(20) unsigned DEFAULT NULL,
  `media_video_mute` tinyint(1) NOT NULL DEFAULT 0,
  `sort_order` int(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `slider_id` (`slider_id`),
  KEY `media_image_id` (`media_image_id`),
  KEY `media_post_id` (`media_post_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_corefortress_slides`
--

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

--
-- Table structure for table `wpwn_e_events`
--

DROP TABLE IF EXISTS `wpwn_e_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_e_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_data` text DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_e_events`
--

LOCK TABLES `wpwn_e_events` WRITE;
/*!40000 ALTER TABLE `wpwn_e_events` DISABLE KEYS */;
INSERT INTO `wpwn_e_events` VALUES
(1,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2025-09-24T09:49:13.868+07:00\"}','2025-09-24 09:49:13'),
(2,'{\"event\":\"skip\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\"}\",\"ts\":\"2025-09-24T09:49:19.128+07:00\"}','2025-09-24 09:49:19'),
(3,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"hello\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2025-09-24T09:49:19.142+07:00\"}','2025-09-24 09:49:19'),
(4,'{\"event\":\"skip\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"hello\\\"}\",\"ts\":\"2025-09-24T09:49:20.763+07:00\"}','2025-09-24 09:49:20'),
(5,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"chooseFeatures\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2025-09-24T09:49:20.770+07:00\"}','2025-09-24 09:49:20'),
(6,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"goodToGo\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2025-09-24T09:49:23.065+07:00\"}','2025-09-24 09:49:23'),
(7,'{\"event\":\"skip\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"chooseFeatures\\\"}\",\"ts\":\"2025-09-24T09:49:23.057+07:00\"}','2025-09-24 09:49:23');
/*!40000 ALTER TABLE `wpwn_e_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_links`
--

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

--
-- Dumping data for table `wpwn_links`
--

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

--
-- Table structure for table `wpwn_litespeed_url`
--

DROP TABLE IF EXISTS `wpwn_litespeed_url`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_litespeed_url` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `url` varchar(500) NOT NULL,
  `cache_tags` varchar(1000) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  UNIQUE KEY `url` (`url`(191)),
  KEY `cache_tags` (`cache_tags`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_litespeed_url`
--

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

--
-- Table structure for table `wpwn_litespeed_url_file`
--

DROP TABLE IF EXISTS `wpwn_litespeed_url_file`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_litespeed_url_file` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `url_id` bigint(20) NOT NULL,
  `vary` varchar(32) NOT NULL DEFAULT '' COMMENT 'md5 of final vary',
  `filename` varchar(32) NOT NULL DEFAULT '' COMMENT 'md5 of file content',
  `type` tinyint(4) NOT NULL COMMENT 'css=1,js=2,ccss=3,ucss=4',
  `expired` int(11) NOT NULL DEFAULT 0,
  `mobile` tinyint(4) NOT NULL COMMENT 'mobile=1',
  `webp` tinyint(4) NOT NULL COMMENT 'webp=1',
  PRIMARY KEY (`id`),
  KEY `filename` (`filename`),
  KEY `type` (`type`),
  KEY `url_id_2` (`url_id`,`vary`,`type`),
  KEY `filename_2` (`filename`,`expired`),
  KEY `url_id` (`url_id`,`expired`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_litespeed_url_file`
--

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

--
-- Table structure for table `wpwn_loginizer_logs`
--

DROP TABLE IF EXISTS `wpwn_loginizer_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_loginizer_logs` (
  `username` varchar(255) NOT NULL DEFAULT '',
  `time` int(10) NOT NULL DEFAULT 0,
  `count` int(10) NOT NULL DEFAULT 0,
  `lockout` int(10) NOT NULL DEFAULT 0,
  `ip` varchar(255) NOT NULL DEFAULT '',
  `url` varchar(255) NOT NULL DEFAULT '',
  UNIQUE KEY `ip` (`ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_loginizer_logs`
--

LOCK TABLES `wpwn_loginizer_logs` WRITE;
/*!40000 ALTER TABLE `wpwn_loginizer_logs` DISABLE KEYS */;
INSERT INTO `wpwn_loginizer_logs` VALUES
('admin',1770400930,2,0,'103.238.128.55','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770414686,1,0,'103.255.134.61','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770422917,1,0,'103.74.116.253','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770386185,1,0,'103.97.124.92','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770400705,1,0,'104.225.1.248','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770346309,2,0,'107.189.13.239','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770404323,1,0,'107.189.30.143','https://guidoconstructioninc.com/wp-login.php?wp_lang=e'),
('admin',1770417645,2,0,'116.118.2.113','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770374566,2,0,'136.144.35.187','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770389813,1,0,'136.144.35.188','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770378619,1,0,'136.144.35.189','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770385708,3,1,'136.144.35.192','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770379635,1,0,'136.144.35.193','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770381676,1,0,'136.144.35.194','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770372525,2,0,'136.144.35.196','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770390875,1,0,'136.144.35.197','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770383689,1,0,'136.144.35.198','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770386727,3,1,'136.144.35.199','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770367510,1,0,'136.144.35.200','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770370512,1,0,'136.144.35.205','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770376600,2,0,'136.144.35.206','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770387769,5,1,'136.144.35.211','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770384704,2,0,'136.144.35.213','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770388797,2,0,'136.144.35.214','https://guidoconstructioninc.com/wp-login.php'),
('admin@zzna.ru',1770350458,1,0,'137.184.225.216','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770423676,1,0,'138.122.71.215','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770410341,1,0,'142.93.120.13','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770393453,1,0,'159.198.37.158','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770419745,1,0,'160.153.180.157','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770379235,1,0,'161.35.231.74','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770419712,2,0,'162.0.216.102','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770403021,1,0,'162.240.105.3','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770406755,4,1,'162.240.233.32','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770378320,1,0,'162.241.62.197','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770408972,1,0,'162.55.14.58','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770330506,1,0,'173.239.240.119','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770323114,1,0,'173.239.240.120','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770332742,1,0,'173.239.240.124','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770337060,1,0,'173.239.240.126','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770327875,1,0,'173.239.240.130','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770335398,1,0,'173.239.240.140','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770325327,1,0,'173.239.240.142','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770334022,1,0,'173.239.240.144','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770329229,2,0,'173.239.240.145','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770342879,1,0,'173.239.240.148','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770340827,2,0,'173.239.240.149','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770331456,2,0,'173.239.240.152','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770350394,1,0,'173.239.240.153','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770363530,1,0,'173.239.240.154','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770359768,3,1,'173.239.240.155','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770325827,1,0,'173.239.240.156','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770312641,1,0,'173.239.240.157','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770348523,1,0,'173.239.240.158','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770356008,5,1,'173.239.240.159','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770352266,3,1,'173.239.240.162','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770327709,3,1,'173.239.240.163','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770357891,2,0,'173.239.240.164','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770337080,2,0,'173.239.240.165','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770335184,1,0,'173.239.240.166','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770338958,1,0,'173.239.240.167','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770354138,4,1,'173.239.240.169','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770346647,2,0,'173.239.240.170','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770323937,1,0,'173.239.240.172','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770308761,2,0,'173.239.240.173','https://guidoconstructioninc.com/wp-login.php'),
('11',1770312059,1,0,'185.102.115.5','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770380330,1,0,'185.104.30.53','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770401548,4,1,'185.217.127.100','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770416262,3,1,'185.249.40.156','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770420520,1,0,'192.163.196.216','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770391938,1,0,'192.185.4.103','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770407468,1,0,'197.242.67.159','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770415466,2,0,'198.71.60.118','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770384629,1,0,'20.219.105.83','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770390298,2,0,'209.142.65.156','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770424260,2,0,'209.87.169.127','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770411386,1,0,'209.87.169.128','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770412824,1,0,'209.87.169.132','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770408822,1,0,'209.87.169.135','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770415669,1,0,'209.87.169.142','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770413964,2,0,'213.145.94.73','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770398928,1,0,'217.154.105.13','https://guidoconstructioninc.com/xmlrpc.php'),
('xcom',1770381311,1,0,'217.154.56.229','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770411531,1,0,'217.160.149.31','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770403939,2,0,'217.195.196.83','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770423637,1,0,'3.109.246.212','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770425567,1,0,'3.7.184.189','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770412153,1,0,'31.220.151.86','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770403769,1,0,'34.77.90.132','https://guidoconstructioninc.com/xmlrpc.php'),
('product',1770328662,1,0,'35.198.225.249','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770360276,1,0,'45.131.195.101','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770376384,1,0,'45.131.195.104','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770383147,2,0,'45.131.195.105','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770343701,2,0,'45.131.195.106','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770422808,1,0,'45.131.195.107','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770357708,2,0,'45.131.195.109','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770409990,1,0,'45.131.195.113','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770418540,1,0,'45.131.195.117','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770414248,1,0,'45.131.195.122','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770421380,1,0,'45.131.195.142','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770425716,1,0,'45.131.195.143','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770417114,1,0,'45.131.195.147','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770366897,1,0,'45.131.195.249','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770327662,1,0,'45.131.195.53','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770368254,1,0,'45.131.195.54','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770375029,2,0,'45.131.195.55','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770381794,2,0,'45.131.195.56','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770365540,1,0,'45.131.195.58','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770334532,1,0,'45.131.195.61','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770372312,3,1,'45.131.195.62','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770362870,1,0,'45.131.195.63','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770320758,1,0,'45.131.195.66','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770356404,1,0,'45.131.195.69','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770373674,2,0,'45.131.195.70','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770330452,1,0,'45.131.195.72','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770317701,1,0,'45.131.195.73','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770369607,4,1,'45.131.195.74','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770380423,2,0,'45.131.195.75','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770323554,1,0,'45.131.195.78','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770346508,1,0,'45.131.195.80','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770379070,3,1,'45.131.195.82','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770384515,3,1,'45.131.195.99','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770422104,1,0,'45.138.68.203','https://guidoconstructioninc.com/xmlrpc.php'),
('11',1770370558,1,0,'45.61.185.106','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770418391,1,0,'45.77.246.163','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770402368,2,0,'46.101.137.29','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770398027,1,0,'47.161.210.72','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770387611,1,0,'49.247.31.241','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770424824,1,0,'5.182.209.204','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770401726,1,0,'5.252.152.209','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770414754,1,0,'50.6.138.26','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770405374,1,0,'50.6.174.25','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770418800,1,0,'50.62.187.124','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770394919,1,0,'54.37.85.6','https://guidoconstructioninc.com/wp-login.php'),
('adm',1770417175,1,0,'54.38.65.75','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770397062,1,0,'57.128.2.15','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770410921,1,0,'66.116.207.52','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770399215,1,0,'66.96.183.216','https://guidoconstructioninc.com/wp-login.php'),
('uredik',1770338922,1,0,'68.178.164.217','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770381136,1,0,'72.167.134.85','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770379305,1,0,'72.167.86.209','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770384180,2,0,'81.22.243.161','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770406635,1,0,'84.247.191.248','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770412887,1,0,'92.205.101.169','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770422962,4,1,'92.205.182.143','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770393966,1,0,'92.205.3.54','https://guidoconstructioninc.com/xmlrpc.php'),
('admin',1770380976,1,0,'95.111.228.44','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770368095,2,0,'95.85.238.19','https://guidoconstructioninc.com/wp-login.php'),
('admin',1770354859,1,0,'95.85.238.23','https://guidoconstructioninc.com/wp-login.php');
/*!40000 ALTER TABLE `wpwn_loginizer_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_mystickymenu_contact_lists`
--

DROP TABLE IF EXISTS `wpwn_mystickymenu_contact_lists`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_mystickymenu_contact_lists` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `widget_id` int(11) DEFAULT NULL,
  `contact_name` varchar(255) DEFAULT NULL,
  `contact_phone` varchar(255) DEFAULT NULL,
  `contact_email` varchar(255) DEFAULT NULL,
  `widget_name` varchar(255) DEFAULT NULL,
  `page_link` varchar(522) DEFAULT NULL,
  `message_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_mystickymenu_contact_lists`
--

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

--
-- Table structure for table `wpwn_nextend2_image_storage`
--

DROP TABLE IF EXISTS `wpwn_nextend2_image_storage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_nextend2_image_storage` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hash` varchar(32) NOT NULL,
  `image` text NOT NULL,
  `value` mediumtext NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash` (`hash`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_nextend2_image_storage`
--

LOCK TABLES `wpwn_nextend2_image_storage` WRITE;
/*!40000 ALTER TABLE `wpwn_nextend2_image_storage` DISABLE KEYS */;
INSERT INTO `wpwn_nextend2_image_storage` VALUES
(1,'284bdb1c0d0e6c6825e7869f1d2e2108','$upload$/2021/08/topdown-drone-aerial-photography-concrete-pour-Guido_Construction.jpg','eyJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIifSwibW9iaWxlIjp7ImltYWdlIjoiIn19'),
(2,'aad84c9fa790813eb99fbe6715cf2acc','$upload$/2021/08/Guido-Construction-VA-JOBSITE-12.jpg','eyJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIifSwibW9iaWxlIjp7ImltYWdlIjoiIn19'),
(3,'370ffd617e8773cb82ed848fead52582','$upload$/2021/08/Guido-Construction-VA-JOBSITE-03.jpg','eyJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIifSwibW9iaWxlIjp7ImltYWdlIjoiIn19'),
(4,'e792a48ab12e2f825088e61f6015b0d5','$upload$/2021/08/Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image.jpg','eyJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIifSwibW9iaWxlIjp7ImltYWdlIjoiIn19'),
(5,'b369b4a10866f41ad46b378101ef2110','$upload$/2021/09/StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction_Concrete.jpg','eyJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIifSwibW9iaWxlIjp7ImltYWdlIjoiIn19'),
(6,'143fd582d5aee224d6488b9d7bd6ac1e','$upload$/2021/09/ParkingLot_Concrete_Work_Oregon_Guido_Construction_Douglas_County.jpg','eyJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIifSwibW9iaWxlIjp7ImltYWdlIjoiIn19'),
(7,'e43b3fe3fd9c4e34f7109e59a3c93a2f','$upload$/2021/10/Roseburg-Oregon-Gudio_Construction-best-concrete-company.jpg','eyJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIifSwibW9iaWxlIjp7ImltYWdlIjoiIn19'),
(8,'2fae46e7a0c7346d91a16ae45b56530d','$upload$/2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths.jpg','eyJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIifSwibW9iaWxlIjp7ImltYWdlIjoiIn19'),
(9,'2b815ce46c2fc6b37d044cf6f7145bd9','$upload$/2021/11/Roseburg_National_Cemetary_Brick_Concrete_-2.png','eyJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIifSwibW9iaWxlIjp7ImltYWdlIjoiIn19'),
(10,'3e9c00e8f0cc98924da278d963abc942','$upload$/2024/06/Guido-Construction-Medford-Concrete-6.jpg','eyJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIifSwibW9iaWxlIjp7ImltYWdlIjoiIn19'),
(11,'88766af1d56752b6692d2b186be05d32','$upload$/2024/07/DJI_20240703082308_0039_D.png','eyJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIifSwibW9iaWxlIjp7ImltYWdlIjoiIn19'),
(12,'907645c36df0a9f7b45d98237454709c','$upload$/2021/10/Guido_Construction_rebar_USFS_jobsite-Men_In_hardhat.jpg','eyJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIifSwibW9iaWxlIjp7ImltYWdlIjoiIn19'),
(13,'83e6fd607533aa34b972a05d4aa0cbfe','$upload$/2025/03/Douglas-Ave-ada-sidewalk-Guido-Construction-Inc-23.jpg','eyJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIifSwibW9iaWxlIjp7ImltYWdlIjoiIn19'),
(14,'6cfead74351a3fa68fe0e107eda98e79','$upload$/2025/03/Douglas-Ave-tear-up-concrete-concrete-cutting-Guido-Construction-Inc-92.jpg','eyJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIifSwibW9iaWxlIjp7ImltYWdlIjoiIn19'),
(15,'9963c9612c58ed8b946be5e16066e73c','$upload$/slider4/musicbg-1.png','eyJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIifSwibW9iaWxlIjp7ImltYWdlIjoiIn19');
/*!40000 ALTER TABLE `wpwn_nextend2_image_storage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_nextend2_section_storage`
--

DROP TABLE IF EXISTS `wpwn_nextend2_section_storage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_nextend2_section_storage` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `application` varchar(20) NOT NULL,
  `section` varchar(128) NOT NULL,
  `referencekey` varchar(128) NOT NULL,
  `value` mediumtext NOT NULL,
  `isSystem` int(11) NOT NULL DEFAULT 0,
  `editable` int(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `editable` (`editable`),
  KEY `isSystem` (`isSystem`),
  KEY `application` (`application`,`section`(50),`referencekey`(50)),
  KEY `application_2` (`application`,`section`(50))
) ENGINE=InnoDB AUTO_INCREMENT=11888 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_nextend2_section_storage`
--

LOCK TABLES `wpwn_nextend2_section_storage` WRITE;
/*!40000 ALTER TABLE `wpwn_nextend2_section_storage` DISABLE KEYS */;
INSERT INTO `wpwn_nextend2_section_storage` VALUES
(10000,'smartslider','settings','','{\"n2_ss3_version\":\"3.5.1.32\\/b:release-3.5.1.32\\/r:c397fa89086306811d8c5aa5cd1a037cb099696f\"}',0,1),
(10035,'smartslider','tutorial','GettingStarted','1',0,1),
(11089,'smartslider','free','dismissNewsletterSampleSliders','1',0,1),
(11883,'smartslider','sliderChanged','2','0',0,1),
(11884,'cache','notweb/n2-ss-2','data.manifest','{\"generator\":[]}',0,1),
(11885,'cache','notweb/n2-ss-2','variations.manifest','1',0,1),
(11886,'cache','notweb/n2-ss-2','slideren_US1.manifest','{\"hash\":\"\",\"nextCacheRefresh\":2145916800,\"currentPath\":\"cb7ecd4946fa94baa31864947044dce1\",\"version\":\"3.5.1.32\"}',0,1),
(11887,'cache','notweb/n2-ss-2','slideren_US1','{\"html\":\"<div class=\\\"n2-section-smartslider fitvidsignore  n2_clear\\\" data-ssid=\\\"2\\\"><div id=\\\"n2-ss-2-align\\\" class=\\\"n2-ss-align\\\"><div class=\\\"n2-padding\\\"><div id=\\\"n2-ss-2\\\" data-creator=\\\"Smart Slider 3\\\" data-responsive=\\\"fullwidth\\\" class=\\\"n2-ss-slider n2-ow n2-has-hover n2notransition  \\\">\\n\\n\\n\\n<div class=\\\"n2-ss-slider-wrapper-outside\\\" style=\\\"grid-template-rows:1fr auto\\\"><div class=\\\"n2-ss-slider-wrapper-inside\\\">\\n        <div class=\\\"n2-ss-slider-1 n2_ss__touch_element n2-ow\\\">\\n            <div class=\\\"n2-ss-slider-2 n2-ow\\\">\\n                                                    <div class=\\\"n2-ss-background-animation n2-ow\\\"><\\/div>\\n                                <div class=\\\"n2-ss-slider-3 n2-ow\\\">\\n\\n                    <div class=\\\"n2-ss-slide-backgrounds n2-ow-all\\\"><div class=\\\"n2-ss-slide-background\\\" data-public-id=\\\"1\\\" data-mode=\\\"fill\\\"><div class=\\\"n2-ss-slide-background-image\\\" data-blur=\\\"0\\\" data-opacity=\\\"100\\\" data-x=\\\"40\\\" data-y=\\\"54\\\" data-alt=\\\"\\\" data-title=\\\"\\\" style=\\\"--ss-o-pos-x:40%;--ss-o-pos-y:54%\\\"><picture class=\\\"skip-lazy\\\" data-skip-lazy=\\\"1\\\"><img src=\\\"\\/\\/guidoconstructioninc.com\\/wp-content\\/uploads\\/slider\\/cache\\/98bdc6749c6e1880544cb4781926df89\\/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths.jpg\\\" alt=\\\"\\\" title=\\\"\\\" loading=\\\"lazy\\\" class=\\\"skip-lazy\\\" data-skip-lazy=\\\"1\\\"><\\/picture><\\/div><div data-color=\\\"RGBA(255,255,255,0)\\\" style=\\\"background-color: RGBA(255,255,255,0);\\\" class=\\\"n2-ss-slide-background-color\\\"><\\/div><\\/div><div class=\\\"n2-ss-slide-background\\\" data-public-id=\\\"2\\\" data-mode=\\\"fill\\\" aria-hidden=\\\"true\\\"><div class=\\\"n2-ss-slide-background-image\\\" data-blur=\\\"0\\\" data-opacity=\\\"100\\\" data-x=\\\"53\\\" data-y=\\\"55\\\" data-alt=\\\"\\\" data-title=\\\"\\\" style=\\\"--ss-o-pos-x:53%;--ss-o-pos-y:55%\\\"><picture class=\\\"skip-lazy\\\" data-skip-lazy=\\\"1\\\"><img src=\\\"\\/\\/guidoconstructioninc.com\\/wp-content\\/uploads\\/slider\\/cache\\/f6c988dc9c4db5fd6c0e4b49256fe5a5\\/ParkingLot_Concrete_Work_Oregon_Guido_Construction_Douglas_County.jpg\\\" alt=\\\"\\\" title=\\\"\\\" loading=\\\"lazy\\\" class=\\\"skip-lazy\\\" data-skip-lazy=\\\"1\\\"><\\/picture><\\/div><div data-color=\\\"RGBA(9,42,81,0.5)\\\" style=\\\"background-color: RGBA(9,42,81,0.5);\\\" class=\\\"n2-ss-slide-background-color\\\"><\\/div><\\/div><div class=\\\"n2-ss-slide-background\\\" data-public-id=\\\"3\\\" data-mode=\\\"fill\\\" aria-hidden=\\\"true\\\"><div class=\\\"n2-ss-slide-background-image\\\" data-blur=\\\"0\\\" data-opacity=\\\"100\\\" data-x=\\\"67\\\" data-y=\\\"42\\\" data-alt=\\\"\\\" data-title=\\\"\\\" style=\\\"--ss-o-pos-x:67%;--ss-o-pos-y:42%\\\"><picture class=\\\"skip-lazy\\\" data-skip-lazy=\\\"1\\\"><img src=\\\"\\/\\/guidoconstructioninc.com\\/wp-content\\/uploads\\/slider\\/cache\\/2a3ded8d8fd5d6c2a4d4bd15efefe67a\\/DJI_20240703082308_0039_D.png\\\" alt=\\\"\\\" title=\\\"\\\" loading=\\\"lazy\\\" class=\\\"skip-lazy\\\" data-skip-lazy=\\\"1\\\"><\\/picture><\\/div><div data-gradient=\\\"vertical\\\" data-color-start=\\\"RGBA(9,42,81,0.5)\\\" data-color-end=\\\"RGBA(0,0,0,0.05)\\\" style=\\\"background:linear-gradient(to bottom, RGBA(9,42,81,0.5) 0%,RGBA(0,0,0,0.05) 100%);\\\" class=\\\"n2-ss-slide-background-color\\\" data-overlay=\\\"1\\\"><\\/div><\\/div><div class=\\\"n2-ss-slide-background\\\" data-public-id=\\\"4\\\" data-mode=\\\"fill\\\" aria-hidden=\\\"true\\\"><div class=\\\"n2-ss-slide-background-image\\\" data-blur=\\\"0\\\" data-opacity=\\\"100\\\" data-x=\\\"53\\\" data-y=\\\"48\\\" data-alt=\\\"\\\" data-title=\\\"\\\" style=\\\"--ss-o-pos-x:53%;--ss-o-pos-y:48%\\\"><picture class=\\\"skip-lazy\\\" data-skip-lazy=\\\"1\\\"><img src=\\\"\\/\\/guidoconstructioninc.com\\/wp-content\\/uploads\\/slider\\/cache\\/02d46347ecc425fe74f54ef81e77eec8\\/Douglas-Ave-ada-sidewalk-Guido-Construction-Inc-23.jpg\\\" alt=\\\"\\\" title=\\\"\\\" loading=\\\"lazy\\\" class=\\\"skip-lazy\\\" data-skip-lazy=\\\"1\\\"><\\/picture><\\/div><div data-color=\\\"RGBA(255,255,255,0)\\\" style=\\\"background-color: RGBA(255,255,255,0);\\\" class=\\\"n2-ss-slide-background-color\\\"><\\/div><\\/div><div class=\\\"n2-ss-slide-background\\\" data-public-id=\\\"5\\\" data-mode=\\\"fill\\\" aria-hidden=\\\"true\\\"><div class=\\\"n2-ss-slide-background-image\\\" data-blur=\\\"0\\\" data-opacity=\\\"100\\\" data-x=\\\"70\\\" data-y=\\\"42\\\" data-alt=\\\"\\\" data-title=\\\"\\\" style=\\\"--ss-o-pos-x:70%;--ss-o-pos-y:42%\\\"><picture class=\\\"skip-lazy\\\" data-skip-lazy=\\\"1\\\"><img src=\\\"\\/\\/guidoconstructioninc.com\\/wp-content\\/uploads\\/slider\\/cache\\/5c95f65ddc0f00ca2f283d920a68eea4\\/Douglas-Ave-tear-up-concrete-concrete-cutting-Guido-Construction-Inc-92.jpg\\\" alt=\\\"\\\" title=\\\"\\\" loading=\\\"lazy\\\" class=\\\"skip-lazy\\\" data-skip-lazy=\\\"1\\\"><\\/picture><\\/div><div data-color=\\\"RGBA(9,42,81,0.5)\\\" style=\\\"background-color: RGBA(9,42,81,0.5);\\\" class=\\\"n2-ss-slide-background-color\\\"><\\/div><\\/div><\\/div>                    <div class=\\\"n2-ss-slider-4 n2-ow\\\">\\n                        <svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" viewBox=\\\"0 0 1200 800\\\" data-related-device=\\\"desktopPortrait\\\" class=\\\"n2-ow n2-ss-preserve-size n2-ss-preserve-size--slider n2-ss-slide-limiter\\\"><\\/svg><div data-first=\\\"1\\\" data-slide-duration=\\\"0\\\" data-id=\\\"9\\\" data-slide-public-id=\\\"1\\\" data-title=\\\"Roseburg-Oregon-Gudio_Construction-best-concrete-company\\\" class=\\\"n2-ss-slide n2-ow  n2-ss-slide-9\\\"><div role=\\\"note\\\" class=\\\"n2-ss-slide--focus\\\" tabindex=\\\"-1\\\">Roseburg-Oregon-Gudio_Construction-best-concrete-company<\\/div><div class=\\\"n2-ss-layers-container n2-ss-slide-limiter n2-ow\\\"><div class=\\\"n2-ss-layer n2-ow n-uc-Afi0cgJCbrlT\\\" data-sstype=\\\"slide\\\" data-pm=\\\"default\\\"><div class=\\\"n2-ss-layer n2-ow n-uc-0YZE6KVx3rxC\\\" data-pm=\\\"default\\\" data-sstype=\\\"content\\\" data-hasbackground=\\\"0\\\"><div class=\\\"n2-ss-section-main-content n2-ss-layer-with-background n2-ss-layer-content n2-ow n-uc-0YZE6KVx3rxC-inner\\\"><div class=\\\"n2-ss-layer n2-ow n-uc-kBzhYVGAa6YW\\\" data-pm=\\\"normal\\\" data-sstype=\\\"layer\\\"><div id=\\\"n2-ss-2item1\\\" class=\\\"n2-font-7c01b234dc7406c9bedcff0d974b4dd2-hover   n2-ss-item-content n2-ss-text n2-ow\\\" style=\\\"display:block;\\\">WELCOME TO<br>GUIDO CONSTRUCTION INC.<br><\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow n-uc-UsrHMI32HyuC\\\" data-pm=\\\"normal\\\" data-sstype=\\\"layer\\\"><div id=\\\"n2-ss-2item2\\\" class=\\\"n2-font-2df8baf6f9a034543e1e01edbdcb2cc2-hover n2-style-fdf7b31087bcc2df9577b668ec49c9d3-heading   n2-ss-item-content n2-ss-text n2-ow\\\" style=\\\"display:block;\\\">COMMERCIAL - INDUSTRIAL - RESIDENTIAL <\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><div data-slide-duration=\\\"0\\\" data-id=\\\"11\\\" data-slide-public-id=\\\"2\\\" aria-hidden=\\\"true\\\" data-title=\\\"Slide\\\" class=\\\"n2-ss-slide n2-ow  n2-ss-slide-11\\\"><div role=\\\"note\\\" class=\\\"n2-ss-slide--focus\\\" tabindex=\\\"-1\\\">Slide<\\/div><div class=\\\"n2-ss-layers-container n2-ss-slide-limiter n2-ow\\\"><div class=\\\"n2-ss-layer n2-ow n-uc-VI0dgrXqNKpu\\\" data-sstype=\\\"slide\\\" data-pm=\\\"default\\\"><div class=\\\"n2-ss-layer n2-ow n-uc-STyIwg3K134i\\\" data-pm=\\\"default\\\" data-sstype=\\\"content\\\" data-hasbackground=\\\"0\\\"><div class=\\\"n2-ss-section-main-content n2-ss-layer-with-background n2-ss-layer-content n2-ow n-uc-STyIwg3K134i-inner\\\"><div class=\\\"n2-ss-layer n2-ow n-uc-ADXLVadQq7Hn\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"17\\\" data-tabletportraitleft=\\\"75\\\" data-mobileportraitleft=\\\"0\\\" data-desktopportraittop=\\\"-135\\\" data-tabletportraittop=\\\"-202\\\" data-mobileportraittop=\\\"-206\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"auto\\\" data-tabletportraitwidth=\\\"582\\\" data-mobileportraitwidth=\\\"auto\\\" data-desktopportraitheight=\\\"auto\\\" data-tabletportraitheight=\\\"116\\\" data-mobileportraitheight=\\\"1770\\\" data-desktopportraitalign=\\\"center\\\" data-tabletportraitalign=\\\"center\\\" data-mobileportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-tabletportraitvalign=\\\"middle\\\" data-mobileportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\"><div id=\\\"n2-ss-2item3\\\" class=\\\"n2-font-cbebf844ab11e708ecc736294296eddd-hover n2-style-48b25b97974450b0628ece81e5ab6b99-heading   n2-ss-item-content n2-ss-text n2-ow\\\" style=\\\"display:block;\\\">OUR STATE OF THE ART CONCRETE TECHNIQUES <br>BRING YOUR PROJECT TO LIFE.<br><\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow n-uc-F0uNgICPquRC n2-ss-layer--auto\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"0\\\" data-tabletportraitleft=\\\"64\\\" data-mobileportraitleft=\\\"28\\\" data-desktopportraittop=\\\"0\\\" data-tabletportraittop=\\\"0\\\" data-mobileportraittop=\\\"-206\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"180.6\\\" data-tabletportraitwidth=\\\"310\\\" data-mobileportraitwidth=\\\"566\\\" data-desktopportraitheight=\\\"auto\\\" data-tabletportraitheight=\\\"auto\\\" data-mobileportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-tabletportraitalign=\\\"center\\\" data-mobileportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-tabletportraitvalign=\\\"middle\\\" data-mobileportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\"><div class=\\\"n2-ss-button-container n2-ss-item-content n2-ow n2-font-7f33af65019dbf0235a22eb33adc7b4c-link  n2-ss-nowrap n2-ss-button-container--non-full-width\\\"><a class=\\\"n2-style-3353069a1d6a4529b1501aa7cc121f76-heading  n2-ow \\\" target=\\\"_blank\\\" href=\\\"https:\\/\\/guidoconstructioninc.com\\/contact-us\\/\\\"><div><div>Contact Us<\\/div><\\/div><\\/a><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><div data-slide-duration=\\\"0\\\" data-id=\\\"8\\\" data-slide-public-id=\\\"3\\\" aria-hidden=\\\"true\\\" data-title=\\\"Slide\\\" class=\\\"n2-ss-slide n2-ow  n2-ss-slide-8\\\"><div role=\\\"note\\\" class=\\\"n2-ss-slide--focus\\\" tabindex=\\\"-1\\\">Slide<\\/div><div class=\\\"n2-ss-layers-container n2-ss-slide-limiter n2-ow\\\"><div class=\\\"n2-ss-layer n2-ow n-uc-XbLuIc6tq0Ow\\\" data-sstype=\\\"slide\\\" data-pm=\\\"default\\\"><div class=\\\"n2-ss-layer n2-ow n-uc-v8TJkxbfT0xB\\\" data-pm=\\\"default\\\" data-sstype=\\\"content\\\" data-hasbackground=\\\"0\\\"><div class=\\\"n2-ss-section-main-content n2-ss-layer-with-background n2-ss-layer-content n2-ow n-uc-v8TJkxbfT0xB-inner\\\"><div class=\\\"n2-ss-layer n2-ow n-uc-qU4oJb5E4A7V\\\" data-pm=\\\"normal\\\" data-sstype=\\\"layer\\\"><div id=\\\"n2-ss-2item5\\\" class=\\\"n2-font-92fe464933946d18c974e8ac0dc74faa-hover n2-style-48b25b97974450b0628ece81e5ab6b99-heading   n2-ss-item-content n2-ss-text n2-ow\\\" style=\\\"display:block;\\\">C  O  N  C  R  E  T  E<br>M  A  S  T  E  R  S<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><div data-slide-duration=\\\"0\\\" data-id=\\\"6\\\" data-slide-public-id=\\\"4\\\" aria-hidden=\\\"true\\\" data-title=\\\"topdown-drone-aerial-photography-concrete-pour-Guido_Construction\\\" class=\\\"n2-ss-slide n2-ow  n2-ss-slide-6\\\"><div role=\\\"note\\\" class=\\\"n2-ss-slide--focus\\\" tabindex=\\\"-1\\\">topdown-drone-aerial-photography-concrete-pour-Guido_Construction<\\/div><div class=\\\"n2-ss-layers-container n2-ss-slide-limiter n2-ow\\\"><div class=\\\"n2-ss-layer n2-ow n-uc-uUvBZCtja1lY\\\" data-sstype=\\\"slide\\\" data-pm=\\\"default\\\"><div class=\\\"n2-ss-layer n2-ow n-uc-YFdBLXBwkIJg\\\" data-pm=\\\"default\\\" data-sstype=\\\"content\\\" data-hasbackground=\\\"0\\\"><div class=\\\"n2-ss-section-main-content n2-ss-layer-with-background n2-ss-layer-content n2-ow n-uc-YFdBLXBwkIJg-inner\\\"><div class=\\\"n2-ss-layer n2-ow n-uc-1976716b8f5ee\\\" data-pm=\\\"normal\\\" data-sstype=\\\"layer\\\"><div id=\\\"n2-ss-2item6\\\" class=\\\"n2-font-e22e564f816637e3ac01e764ddf7cc37-hover n2-style-bc759af9a4c3b6fd6f40ae60d4185cab-heading   n2-ss-item-content n2-ss-text n2-ow\\\" style=\\\"display:block;\\\">EXPERIENCE - EXCELLENCE - QUALITY<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><div data-slide-duration=\\\"0\\\" data-id=\\\"4\\\" data-slide-public-id=\\\"5\\\" aria-hidden=\\\"true\\\" data-title=\\\"Slide\\\" class=\\\"n2-ss-slide n2-ow  n2-ss-slide-4\\\"><div role=\\\"note\\\" class=\\\"n2-ss-slide--focus\\\" tabindex=\\\"-1\\\">Slide<\\/div><div class=\\\"n2-ss-layers-container n2-ss-slide-limiter n2-ow\\\"><div class=\\\"n2-ss-layer n2-ow n-uc-y1rmvXLjsU56\\\" data-sstype=\\\"slide\\\" data-pm=\\\"default\\\"><div class=\\\"n2-ss-layer n2-ow n-uc-FKD39duXfp5Q\\\" data-pm=\\\"default\\\" data-sstype=\\\"content\\\" data-hasbackground=\\\"0\\\"><div class=\\\"n2-ss-section-main-content n2-ss-layer-with-background n2-ss-layer-content n2-ow n-uc-FKD39duXfp5Q-inner\\\"><div class=\\\"n2-ss-layer n2-ow n-uc-12f6bf288cd70\\\" data-pm=\\\"absolute\\\" data-responsiveposition=\\\"1\\\" data-desktopportraitleft=\\\"0\\\" data-tabletportraitleft=\\\"14\\\" data-mobileportraitleft=\\\"19\\\" data-desktopportraittop=\\\"294\\\" data-tabletportraittop=\\\"-244\\\" data-mobileportraittop=\\\"-180\\\" data-responsivesize=\\\"1\\\" data-desktopportraitwidth=\\\"auto\\\" data-tabletportraitwidth=\\\"661\\\" data-desktopportraitheight=\\\"auto\\\" data-tabletportraitheight=\\\"auto\\\" data-desktopportraitalign=\\\"center\\\" data-tabletportraitalign=\\\"center\\\" data-desktopportraitvalign=\\\"middle\\\" data-tabletportraitvalign=\\\"middle\\\" data-parentid=\\\"\\\" data-desktopportraitparentalign=\\\"center\\\" data-desktopportraitparentvalign=\\\"middle\\\" data-sstype=\\\"layer\\\"><div id=\\\"n2-ss-2item7\\\" class=\\\"n2-font-e22e564f816637e3ac01e764ddf7cc37-hover n2-style-48b25b97974450b0628ece81e5ab6b99-heading   n2-ss-item-content n2-ss-text n2-ow\\\" style=\\\"display:block;\\\">A GENERATIONAL FAMILY BUSINESS<\\/div><\\/div><div class=\\\"n2-ss-layer n2-ow n-uc-dPYUhAqeJ5gL\\\" data-pm=\\\"normal\\\" data-sstype=\\\"layer\\\"><div class=\\\" n2-ss-item-image-content n2-ss-item-content n2-ow-all\\\"><img id=\\\"n2-ss-2item8\\\" alt=\\\"\\\" class=\\\"skip-lazy\\\" loading=\\\"lazy\\\" width=\\\"2094\\\" height=\\\"1826\\\" data-skip-lazy=\\\"1\\\" src=\\\"\\/\\/guidoconstructioninc.com\\/wp-content\\/uploads\\/2025\\/09\\/Guido-Construction-Inc-White-LogoRGB.png\\\" \\/><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>                    <\\/div>\\n\\n                                    <\\/div>\\n            <\\/div>\\n        <\\/div>\\n        <div class=\\\"n2-ss-slider-controls n2-ss-slider-controls-absolute-left-center\\\"><div style=\\\"--widget-offset:15px;\\\" class=\\\"n2-ss-widget nextend-arrow n2-ow-all nextend-arrow-previous  nextend-arrow-animated-fade\\\" data-hide-mobileportrait=\\\"1\\\" id=\\\"n2-ss-2-arrow-previous\\\" role=\\\"button\\\" aria-label=\\\"previous arrow\\\" tabindex=\\\"0\\\"><img width=\\\"32\\\" height=\\\"32\\\" class=\\\"n2-arrow-normal-img skip-lazy\\\" data-skip-lazy=\\\"1\\\" src=\\\"data:image\\/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik0xMS40MzMgMTUuOTkyTDIyLjY5IDUuNzEyYy4zOTMtLjM5LjM5My0xLjAzIDAtMS40Mi0uMzkzLS4zOS0xLjAzLS4zOS0xLjQyMyAwbC0xMS45OCAxMC45NGMtLjIxLjIxLS4zLjQ5LS4yODUuNzYtLjAxNS4yOC4wNzUuNTYuMjg0Ljc3bDExLjk4IDEwLjk0Yy4zOTMuMzkgMS4wMy4zOSAxLjQyNCAwIC4zOTMtLjQuMzkzLTEuMDMgMC0xLjQybC0xMS4yNTctMTAuMjkiCiAgICAgICAgICBmaWxsPSIjMDkyYTUxIiBvcGFjaXR5PSIwLjU5IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz4KPC9zdmc+\\\" alt=\\\"previous arrow\\\"><img width=\\\"32\\\" height=\\\"32\\\" class=\\\"n2-arrow-hover-img skip-lazy\\\" data-skip-lazy=\\\"1\\\" src=\\\"data:image\\/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik0xMS40MzMgMTUuOTkyTDIyLjY5IDUuNzEyYy4zOTMtLjM5LjM5My0xLjAzIDAtMS40Mi0uMzkzLS4zOS0xLjAzLS4zOS0xLjQyMyAwbC0xMS45OCAxMC45NGMtLjIxLjIxLS4zLjQ5LS4yODUuNzYtLjAxNS4yOC4wNzUuNTYuMjg0Ljc3bDExLjk4IDEwLjk0Yy4zOTMuMzkgMS4wMy4zOSAxLjQyNCAwIC4zOTMtLjQuMzkzLTEuMDMgMC0xLjQybC0xMS4yNTctMTAuMjkiCiAgICAgICAgICBmaWxsPSIjZmZmZmZmIiBvcGFjaXR5PSIwLjgiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPgo8L3N2Zz4=\\\" alt=\\\"previous arrow\\\"><\\/div><\\/div><div class=\\\"n2-ss-slider-controls n2-ss-slider-controls-absolute-right-center\\\"><div style=\\\"--widget-offset:15px;\\\" class=\\\"n2-ss-widget nextend-arrow n2-ow-all nextend-arrow-next  nextend-arrow-animated-fade\\\" data-hide-mobileportrait=\\\"1\\\" id=\\\"n2-ss-2-arrow-next\\\" role=\\\"button\\\" aria-label=\\\"next arrow\\\" tabindex=\\\"0\\\"><img width=\\\"32\\\" height=\\\"32\\\" class=\\\"n2-arrow-normal-img skip-lazy\\\" data-skip-lazy=\\\"1\\\" src=\\\"data:image\\/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik0xMC43MjIgNC4yOTNjLS4zOTQtLjM5LTEuMDMyLS4zOS0xLjQyNyAwLS4zOTMuMzktLjM5MyAxLjAzIDAgMS40MmwxMS4yODMgMTAuMjgtMTEuMjgzIDEwLjI5Yy0uMzkzLjM5LS4zOTMgMS4wMiAwIDEuNDIuMzk1LjM5IDEuMDMzLjM5IDEuNDI3IDBsMTIuMDA3LTEwLjk0Yy4yMS0uMjEuMy0uNDkuMjg0LS43Ny4wMTQtLjI3LS4wNzYtLjU1LS4yODYtLjc2TDEwLjcyIDQuMjkzeiIKICAgICAgICAgIGZpbGw9IiMwOTJhNTEiIG9wYWNpdHk9IjAuNTkiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPgo8L3N2Zz4=\\\" alt=\\\"next arrow\\\"><img width=\\\"32\\\" height=\\\"32\\\" class=\\\"n2-arrow-hover-img skip-lazy\\\" data-skip-lazy=\\\"1\\\" src=\\\"data:image\\/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik0xMC43MjIgNC4yOTNjLS4zOTQtLjM5LTEuMDMyLS4zOS0xLjQyNyAwLS4zOTMuMzktLjM5MyAxLjAzIDAgMS40MmwxMS4yODMgMTAuMjgtMTEuMjgzIDEwLjI5Yy0uMzkzLjM5LS4zOTMgMS4wMiAwIDEuNDIuMzk1LjM5IDEuMDMzLjM5IDEuNDI3IDBsMTIuMDA3LTEwLjk0Yy4yMS0uMjEuMy0uNDkuMjg0LS43Ny4wMTQtLjI3LS4wNzYtLjU1LS4yODYtLjc2TDEwLjcyIDQuMjkzeiIKICAgICAgICAgIGZpbGw9IiNmZmZmZmYiIG9wYWNpdHk9IjAuOCIgZmlsbC1ydWxlPSJldmVub2RkIi8+Cjwvc3ZnPg==\\\" alt=\\\"next arrow\\\"><\\/div><\\/div><div class=\\\"n2-ss-slider-controls n2-ss-slider-controls-absolute-center-bottom\\\"><div style=\\\"--widget-offset:10px;\\\" class=\\\"n2-ss-widget n2-ss-widget-display-hover n2-ss-control-bullet n2-ow-all n2-ss-control-bullet-horizontal\\\"><div class=\\\" nextend-bullet-bar n2-bar-justify-content-center\\\" role=\\\"group\\\" aria-label=\\\"Choose slide to display.\\\"><div class=\\\"n2-bullet n2-style-0b1501f187dd486f0b3833aafb1a1b8d-dot \\\" style=\\\"visibility:hidden;\\\"><\\/div><\\/div><\\/div><\\/div><\\/div><div class=\\\"n2-ss-slider-controls n2-ss-slider-controls-below\\\"><div class=\\\"n2-ss-widget nextend-shadow n2-ow-all\\\" data-hide-mobileportrait=\\\"1\\\"><img width=\\\"1120\\\" height=\\\"50\\\" style=\\\"display: block; width:100%;max-width:none;\\\" class=\\\"nextend-shadow-image skip-lazy\\\" loading=\\\"lazy\\\" data-skip-lazy=\\\"1\\\" src=\\\"https:\\/\\/guidoconstructioninc.com\\/wp-content\\/plugins\\/smart-slider-3\\/Public\\/SmartSlider3\\/Widget\\/Shadow\\/ShadowImage\\/Assets\\/shadow\\/dark.png\\\" alt=\\\"Shadow\\\"><\\/div><\\/div><\\/div><\\/div><ss3-loader><\\/ss3-loader><\\/div><\\/div><div class=\\\"n2_clear\\\"><\\/div><\\/div>\",\"assets\":{\"css\":{\"staticGroupPreload\":{\"smartslider\":\"\\/home\\/burteany\\/guidoconstructioninc.com\\/wp-content\\/plugins\\/smart-slider-3\\/Public\\/SmartSlider3\\/Application\\/Frontend\\/Assets\\/dist\\/smartslider.min.css\"},\"staticGroup\":[],\"files\":[],\"urls\":[],\"codes\":[],\"firstCodes\":[],\"inline\":{\"n2-ss-2\":\"div#n2-ss-2 .n2-ss-slider-1{display:grid;position:relative;}div#n2-ss-2 .n2-ss-slider-2{display:grid;position:relative;overflow:hidden;padding:0px 0px 0px 0px;border:0px solid RGBA(62,62,62,1);border-radius:0px;background-clip:padding-box;background-repeat:repeat;background-position:50% 50%;background-size:cover;background-attachment:scroll;z-index:1;}div#n2-ss-2:not(.n2-ss-loaded) .n2-ss-slider-2{background-image:none !important;}div#n2-ss-2 .n2-ss-slider-3{display:grid;grid-template-areas:\'cover\';position:relative;overflow:hidden;z-index:10;}div#n2-ss-2 .n2-ss-slider-3 > *{grid-area:cover;}div#n2-ss-2 .n2-ss-slide-backgrounds,div#n2-ss-2 .n2-ss-slider-3 > .n2-ss-divider{position:relative;}div#n2-ss-2 .n2-ss-slide-backgrounds{z-index:10;}div#n2-ss-2 .n2-ss-slide-backgrounds > *{overflow:hidden;}div#n2-ss-2 .n2-ss-slide-background{transform:translateX(-100000px);}div#n2-ss-2 .n2-ss-slider-4{place-self:center;position:relative;width:100%;height:100%;z-index:20;display:grid;grid-template-areas:\'slide\';}div#n2-ss-2 .n2-ss-slider-4 > *{grid-area:slide;}div#n2-ss-2.n2-ss-full-page--constrain-ratio .n2-ss-slider-4{height:auto;}div#n2-ss-2 .n2-ss-slide{display:grid;place-items:center;grid-auto-columns:100%;position:relative;z-index:20;-webkit-backface-visibility:hidden;transform:translateX(-100000px);}div#n2-ss-2 .n2-ss-slide{perspective:1500px;}div#n2-ss-2 .n2-ss-slide-active{z-index:21;}.n2-ss-background-animation{position:absolute;top:0;left:0;width:100%;height:100%;z-index:3;}div#n2-ss-2 .n2-ss-button-container,div#n2-ss-2 .n2-ss-button-container a{display:block;}div#n2-ss-2 .n2-ss-button-container--non-full-width,div#n2-ss-2 .n2-ss-button-container--non-full-width a{display:inline-block;}div#n2-ss-2 .n2-ss-button-container.n2-ss-nowrap{white-space:nowrap;}div#n2-ss-2 .n2-ss-button-container a div{display:inline;font-size:inherit;text-decoration:inherit;color:inherit;line-height:inherit;font-family:inherit;font-weight:inherit;}div#n2-ss-2 .n2-ss-button-container a > div{display:inline-flex;align-items:center;vertical-align:top;}div#n2-ss-2 .n2-ss-button-container span{font-size:100%;vertical-align:baseline;}div#n2-ss-2 .n2-ss-button-container a[data-iconplacement=\\\"left\\\"] span{margin-right:0.3em;}div#n2-ss-2 .n2-ss-button-container a[data-iconplacement=\\\"right\\\"] span{margin-left:0.3em;}div#n2-ss-2 .n2-ss-background-animation{position:absolute;top:0;left:0;width:100%;height:100%;z-index:3;}div#n2-ss-2 .n2-ss-background-animation .n2-ss-slide-background{z-index:auto;}div#n2-ss-2 .n2-bganim-side{position:absolute;left:0;top:0;overflow:hidden;background:RGBA(51,51,51,1);}div#n2-ss-2 .n2-bganim-tile-overlay-colored{z-index:100000;background:RGBA(51,51,51,1);}div#n2-ss-2 .nextend-arrow{cursor:pointer;overflow:hidden;line-height:0 !important;z-index:18;-webkit-user-select:none;}div#n2-ss-2 .nextend-arrow img{position:relative;display:block;}div#n2-ss-2 .nextend-arrow img.n2-arrow-hover-img{display:none;}div#n2-ss-2 .nextend-arrow:FOCUS img.n2-arrow-hover-img,div#n2-ss-2 .nextend-arrow:HOVER img.n2-arrow-hover-img{display:inline;}div#n2-ss-2 .nextend-arrow:FOCUS img.n2-arrow-normal-img,div#n2-ss-2 .nextend-arrow:HOVER img.n2-arrow-normal-img{display:none;}div#n2-ss-2 .nextend-arrow-animated{overflow:hidden;}div#n2-ss-2 .nextend-arrow-animated > div{position:relative;}div#n2-ss-2 .nextend-arrow-animated .n2-active{position:absolute;}div#n2-ss-2 .nextend-arrow-animated-fade{transition:background 0.3s, opacity 0.4s;}div#n2-ss-2 .nextend-arrow-animated-horizontal > div{transition:all 0.4s;transform:none;}div#n2-ss-2 .nextend-arrow-animated-horizontal .n2-active{top:0;}div#n2-ss-2 .nextend-arrow-previous.nextend-arrow-animated-horizontal .n2-active{left:100%;}div#n2-ss-2 .nextend-arrow-next.nextend-arrow-animated-horizontal .n2-active{right:100%;}div#n2-ss-2 .nextend-arrow-previous.nextend-arrow-animated-horizontal:HOVER > div,div#n2-ss-2 .nextend-arrow-previous.nextend-arrow-animated-horizontal:FOCUS > div{transform:translateX(-100%);}div#n2-ss-2 .nextend-arrow-next.nextend-arrow-animated-horizontal:HOVER > div,div#n2-ss-2 .nextend-arrow-next.nextend-arrow-animated-horizontal:FOCUS > div{transform:translateX(100%);}div#n2-ss-2 .nextend-arrow-animated-vertical > div{transition:all 0.4s;transform:none;}div#n2-ss-2 .nextend-arrow-animated-vertical .n2-active{left:0;}div#n2-ss-2 .nextend-arrow-previous.nextend-arrow-animated-vertical .n2-active{top:100%;}div#n2-ss-2 .nextend-arrow-next.nextend-arrow-animated-vertical .n2-active{bottom:100%;}div#n2-ss-2 .nextend-arrow-previous.nextend-arrow-animated-vertical:HOVER > div,div#n2-ss-2 .nextend-arrow-previous.nextend-arrow-animated-vertical:FOCUS > div{transform:translateY(-100%);}div#n2-ss-2 .nextend-arrow-next.nextend-arrow-animated-vertical:HOVER > div,div#n2-ss-2 .nextend-arrow-next.nextend-arrow-animated-vertical:FOCUS > div{transform:translateY(100%);}div#n2-ss-2 .n2-ss-control-bullet{visibility:hidden;text-align:center;justify-content:center;z-index:14;}div#n2-ss-2 .n2-ss-control-bullet--calculate-size{left:0 !important;}div#n2-ss-2 .n2-ss-control-bullet-horizontal.n2-ss-control-bullet-fullsize{width:100%;}div#n2-ss-2 .n2-ss-control-bullet-vertical.n2-ss-control-bullet-fullsize{height:100%;flex-flow:column;}div#n2-ss-2 .nextend-bullet-bar{display:inline-flex;vertical-align:top;visibility:visible;align-items:center;flex-wrap:wrap;}div#n2-ss-2 .n2-bar-justify-content-left{justify-content:flex-start;}div#n2-ss-2 .n2-bar-justify-content-center{justify-content:center;}div#n2-ss-2 .n2-bar-justify-content-right{justify-content:flex-end;}div#n2-ss-2 .n2-ss-control-bullet-vertical > .nextend-bullet-bar{flex-flow:column;}div#n2-ss-2 .n2-ss-control-bullet-fullsize > .nextend-bullet-bar{display:flex;}div#n2-ss-2 .n2-ss-control-bullet-horizontal.n2-ss-control-bullet-fullsize > .nextend-bullet-bar{flex:1 1 auto;}div#n2-ss-2 .n2-ss-control-bullet-vertical.n2-ss-control-bullet-fullsize > .nextend-bullet-bar{height:100%;}div#n2-ss-2 .nextend-bullet-bar .n2-bullet{cursor:pointer;transition:background-color 0.4s;}div#n2-ss-2 .nextend-bullet-bar .n2-bullet.n2-active{cursor:default;}div#n2-ss-2 div.n2-ss-bullet-thumbnail-container{position:absolute;z-index:10000000;}div#n2-ss-2 .n2-ss-bullet-thumbnail-container .n2-ss-bullet-thumbnail{background-size:cover;background-repeat:no-repeat;background-position:center;}div#n2-ss-2 .nextend-shadow{width:100%;z-index:0;}div#n2-ss-2 .nextend-shadow img{max-width:none;width:100%;}div#n2-ss-2 .n2-font-7c01b234dc7406c9bedcff0d974b4dd2-hover{font-family: \'georgia\';color: #ffffff;font-size:225%;text-shadow: none;line-height: 1.5;font-weight: normal;font-style: normal;text-decoration: none;text-align: inherit;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 400;}div#n2-ss-2 .n2-font-2df8baf6f9a034543e1e01edbdcb2cc2-hover{font-family: \'georgia\';color: #8c9dad;font-size:225%;text-shadow: none;line-height: 1.5;font-weight: normal;font-style: normal;text-decoration: none;text-align: center;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 400;}div#n2-ss-2 .n2-style-fdf7b31087bcc2df9577b668ec49c9d3-heading{background: RGBA(9,42,81,0.59);opacity:1;padding:0px 0px 0px 0px ;box-shadow: none;border: 0px solid RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-2 .n2-font-cbebf844ab11e708ecc736294296eddd-hover{font-family: \'georgia\';color: #ffffff;font-size:168.75%;text-shadow: none;line-height: 1.5;font-weight: normal;font-style: normal;text-decoration: none;text-align: center;letter-spacing: 2px;word-spacing: normal;text-transform: none;font-weight: 400;}div#n2-ss-2 .n2-style-48b25b97974450b0628ece81e5ab6b99-heading{background: RGBA(9,42,81,0.5);opacity:1;padding:0px 0px 0px 0px ;box-shadow: none;border: 0px solid RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-2 .n2-font-7f33af65019dbf0235a22eb33adc7b4c-link a{font-family: \'georgia\';color: #ffffff;font-size:93.75%;text-shadow: none;line-height: 1.5;font-weight: normal;font-style: normal;text-decoration: none;text-align: center;letter-spacing: 1px;word-spacing: normal;text-transform: capitalize;font-weight: 800;}div#n2-ss-2 .n2-style-3353069a1d6a4529b1501aa7cc121f76-heading{background: #316fbc;opacity:1;padding:10px 30px 10px 30px ;box-shadow: none;border: 1px none RGBA(0,0,0,1);border-radius:99px;}div#n2-ss-2 .n2-style-3353069a1d6a4529b1501aa7cc121f76-heading:Hover, div#n2-ss-2 .n2-style-3353069a1d6a4529b1501aa7cc121f76-heading:ACTIVE, div#n2-ss-2 .n2-style-3353069a1d6a4529b1501aa7cc121f76-heading:FOCUS{background: #141a3c;}div#n2-ss-2 .n2-font-92fe464933946d18c974e8ac0dc74faa-hover{font-family: \'georgia\';color: #ffffff;font-size:268.75%;text-shadow: none;line-height: 1.5;font-weight: normal;font-style: normal;text-decoration: none;text-align: inherit;letter-spacing: normal;word-spacing: normal;text-transform: none;font-weight: 300;}div#n2-ss-2 .n2-font-e22e564f816637e3ac01e764ddf7cc37-hover{font-family: \'georgia\';color: #ffffff;font-size:225%;text-shadow: none;line-height: 1.5;font-weight: normal;font-style: normal;text-decoration: none;text-align: center;letter-spacing: 2px;word-spacing: normal;text-transform: none;font-weight: 400;}div#n2-ss-2 .n2-style-bc759af9a4c3b6fd6f40ae60d4185cab-heading{background: RGBA(9,42,81,0.5);opacity:1;padding:20px 20px 20px 20px ;box-shadow: none;border: 0px solid RGBA(0,0,0,1);border-radius:0px;}div#n2-ss-2 .n2-style-0b1501f187dd486f0b3833aafb1a1b8d-dot{background: RGBA(0,0,0,0.67);opacity:1;padding:5px 5px 5px 5px ;box-shadow: none;border: 0px solid RGBA(0,0,0,1);border-radius:50px;margin:4px;}div#n2-ss-2 .n2-style-0b1501f187dd486f0b3833aafb1a1b8d-dot.n2-active, div#n2-ss-2 .n2-style-0b1501f187dd486f0b3833aafb1a1b8d-dot:HOVER, div#n2-ss-2 .n2-style-0b1501f187dd486f0b3833aafb1a1b8d-dot:FOCUS{background: RGBA(29,129,249,1);}div#n2-ss-2 .n2-ss-slide-limiter{max-width:1200px;}div#n2-ss-2 .n-uc-Afi0cgJCbrlT{padding:10px 10px 10px 10px}div#n2-ss-2 .n-uc-0YZE6KVx3rxC-inner{padding:10px 10px 10px 10px;justify-content:center}div#n2-ss-2 .n-uc-0YZE6KVx3rxC{align-self:center;}div#n2-ss-2 .n-uc-kBzhYVGAa6YW{--margin-bottom:315px}div#n2-ss-2 .n-uc-UsrHMI32HyuC{--margin-top:5px}div#n2-ss-2 .n-uc-VI0dgrXqNKpu{padding:10px 10px 10px 10px}div#n2-ss-2 .n-uc-STyIwg3K134i-inner{padding:10px 10px 10px 10px;justify-content:center}div#n2-ss-2 .n-uc-STyIwg3K134i{align-self:center;}div#n2-ss-2 .n-uc-F0uNgICPquRC{--ssfont-scale:1.5}div#n2-ss-2 .n-uc-XbLuIc6tq0Ow{padding:10px 10px 10px 10px}div#n2-ss-2 .n-uc-v8TJkxbfT0xB-inner{padding:10px 10px 10px 10px;justify-content:center}div#n2-ss-2 .n-uc-v8TJkxbfT0xB{align-self:center;}div#n2-ss-2 .n-uc-qU4oJb5E4A7V{--margin-top:-10px;max-width:430px}div#n2-ss-2 .n-uc-uUvBZCtja1lY{padding:10px 10px 10px 10px}div#n2-ss-2 .n-uc-YFdBLXBwkIJg-inner{padding:0px 0px 0px 0px;justify-content:space-between}div#n2-ss-2 .n-uc-YFdBLXBwkIJg{align-self:center;}div#n2-ss-2 .n-uc-1976716b8f5ee{--margin-top:455px;--margin-bottom:175px;align-self:center;}div#n2-ss-2 .n-uc-y1rmvXLjsU56{padding:10px 10px 10px 10px}div#n2-ss-2 .n-uc-FKD39duXfp5Q-inner{padding:10px 10px 10px 10px;justify-content:center}div#n2-ss-2 .n-uc-FKD39duXfp5Q{align-self:center;}div#n2-ss-2 .n-uc-12f6bf288cd70{--ssfont-scale:1.3}div#n2-ss-2 .n-uc-dPYUhAqeJ5gL{--margin-right:55px;--margin-bottom:475px;--margin-left:290px;max-width:210px;align-self:var(--ss-fs);}div#n2-ss-2 .nextend-arrow img{width: 32px}@media (min-width: 1200px){div#n2-ss-2 [data-hide-desktopportrait=\\\"1\\\"]{display: none !important;}}@media (orientation: landscape) and (max-width: 1199px) and (min-width: 901px),(orientation: portrait) and (max-width: 1199px) and (min-width: 701px){div#n2-ss-2 .n-uc-ADXLVadQq7Hn{--ssfont-scale:0.7}div#n2-ss-2 .n-uc-uUvBZCtja1lY{padding:350px 10px 0px 10px}div#n2-ss-2 .n-uc-12f6bf288cd70{--ssfont-scale:0.8}div#n2-ss-2 .n-uc-dPYUhAqeJ5gL{--margin-right:170px;--margin-bottom:685px;--margin-left:10px}div#n2-ss-2 [data-hide-tabletportrait=\\\"1\\\"]{display: none !important;}}@media (orientation: landscape) and (max-width: 900px),(orientation: portrait) and (max-width: 700px){div#n2-ss-2 .n2-ss-slide-limiter{max-width:480px;}div#n2-ss-2 .n-uc-Afi0cgJCbrlT{padding:0px 0px 0px 0px}div#n2-ss-2 .n-uc-0YZE6KVx3rxC-inner{padding:10px 0px 10px 0px;text-align:center;--ssselfalign:center;;justify-content:center}div#n2-ss-2 .n-uc-kBzhYVGAa6YW{--margin-bottom:110px}div#n2-ss-2 .n-uc-VI0dgrXqNKpu{padding:255px 10px 0px 10px}div#n2-ss-2 .n-uc-ADXLVadQq7Hn{--ssfont-scale:0.8}div#n2-ss-2 .n-uc-F0uNgICPquRC{--ssfont-scale:0.9}div#n2-ss-2 .n-uc-qU4oJb5E4A7V{--ssfont-scale:0.6}div#n2-ss-2 .n-uc-uUvBZCtja1lY{padding:65px 10px 10px 10px}div#n2-ss-2 .n-uc-1976716b8f5ee{--margin-top:30px;--margin-bottom:20px;--ssfont-scale:0.6}div#n2-ss-2 .n-uc-12f6bf288cd70{--ssfont-scale:0.3}div#n2-ss-2 .n-uc-dPYUhAqeJ5gL{--margin-right:0px;--margin-bottom:275px;--margin-left:40px;max-width:120px}div#n2-ss-2 [data-hide-mobileportrait=\\\"1\\\"]{display: none !important;}div#n2-ss-2 .nextend-arrow img{width: 16px}}\"},\"globalInline\":[]},\"less\":{\"staticGroupPreload\":[],\"staticGroup\":[],\"files\":[],\"urls\":[],\"codes\":[],\"firstCodes\":[],\"inline\":[],\"globalInline\":[]},\"js\":{\"staticGroupPreload\":[],\"staticGroup\":{\"smartslider-frontend\":\"\\/home\\/burteany\\/guidoconstructioninc.com\\/wp-content\\/plugins\\/smart-slider-3\\/Public\\/SmartSlider3\\/Application\\/Frontend\\/Assets\\/dist\\/smartslider-frontend.min.js\",\"ss-simple\":\"\\/home\\/burteany\\/guidoconstructioninc.com\\/wp-content\\/plugins\\/smart-slider-3\\/Public\\/SmartSlider3\\/Slider\\/SliderType\\/Simple\\/Assets\\/dist\\/ss-simple.min.js\",\"smartslider-backgroundanimation\":\"\\/home\\/burteany\\/guidoconstructioninc.com\\/wp-content\\/plugins\\/smart-slider-3\\/Public\\/SmartSlider3\\/Slider\\/SliderType\\/Simple\\/Assets\\/dist\\/smartslider-backgroundanimation.min.js\",\"w-arrow-image\":\"\\/home\\/burteany\\/guidoconstructioninc.com\\/wp-content\\/plugins\\/smart-slider-3\\/Public\\/SmartSlider3\\/Widget\\/Arrow\\/ArrowImage\\/Assets\\/dist\\/w-arrow-image.min.js\",\"w-bullet\":\"\\/home\\/burteany\\/guidoconstructioninc.com\\/wp-content\\/plugins\\/smart-slider-3\\/Public\\/SmartSlider3\\/Widget\\/Bullet\\/Assets\\/dist\\/w-bullet.min.js\"},\"files\":[],\"urls\":[],\"codes\":[],\"firstCodes\":[],\"inline\":[\"_N2.r([\\\"documentReady\\\",\\\"smartslider-frontend\\\",\\\"smartslider-backgroundanimation\\\",\\\"SmartSliderWidgetArrowImage\\\",\\\"SmartSliderWidgetBulletTransition\\\",\\\"SmartSliderWidget\\\",\\\"ss-simple\\\"],function(){new _N2.SmartSliderSimple(\'n2-ss-2\', {\\\"admin\\\":false,\\\"background.video.mobile\\\":1,\\\"loadingTime\\\":2000,\\\"alias\\\":{\\\"id\\\":0,\\\"smoothScroll\\\":0,\\\"slideSwitch\\\":0,\\\"scroll\\\":1},\\\"align\\\":\\\"normal\\\",\\\"isDelayed\\\":0,\\\"responsive\\\":{\\\"mediaQueries\\\":{\\\"all\\\":false,\\\"desktopportrait\\\":[\\\"(min-width: 1200px)\\\"],\\\"tabletportrait\\\":[\\\"(orientation: landscape) and (max-width: 1199px) and (min-width: 901px)\\\",\\\"(orientation: portrait) and (max-width: 1199px) and (min-width: 701px)\\\"],\\\"mobileportrait\\\":[\\\"(orientation: landscape) and (max-width: 900px)\\\",\\\"(orientation: portrait) and (max-width: 700px)\\\"]},\\\"base\\\":{\\\"slideOuterWidth\\\":1200,\\\"slideOuterHeight\\\":800,\\\"sliderWidth\\\":1200,\\\"sliderHeight\\\":800,\\\"slideWidth\\\":1200,\\\"slideHeight\\\":800},\\\"hideOn\\\":{\\\"desktopLandscape\\\":false,\\\"desktopPortrait\\\":false,\\\"tabletLandscape\\\":false,\\\"tabletPortrait\\\":false,\\\"mobileLandscape\\\":false,\\\"mobilePortrait\\\":false},\\\"onResizeEnabled\\\":true,\\\"type\\\":\\\"fullwidth\\\",\\\"sliderHeightBasedOn\\\":\\\"real\\\",\\\"focusUser\\\":1,\\\"focusEdge\\\":\\\"auto\\\",\\\"breakpoints\\\":[{\\\"device\\\":\\\"tabletPortrait\\\",\\\"type\\\":\\\"max-screen-width\\\",\\\"portraitWidth\\\":1199,\\\"landscapeWidth\\\":1199},{\\\"device\\\":\\\"mobilePortrait\\\",\\\"type\\\":\\\"max-screen-width\\\",\\\"portraitWidth\\\":700,\\\"landscapeWidth\\\":900}],\\\"enabledDevices\\\":{\\\"desktopLandscape\\\":0,\\\"desktopPortrait\\\":1,\\\"tabletLandscape\\\":0,\\\"tabletPortrait\\\":1,\\\"mobileLandscape\\\":0,\\\"mobilePortrait\\\":1},\\\"sizes\\\":{\\\"desktopPortrait\\\":{\\\"width\\\":1200,\\\"height\\\":800,\\\"max\\\":3000,\\\"min\\\":1200},\\\"tabletPortrait\\\":{\\\"width\\\":701,\\\"height\\\":467,\\\"customHeight\\\":false,\\\"max\\\":1199,\\\"min\\\":701},\\\"mobilePortrait\\\":{\\\"width\\\":320,\\\"height\\\":213,\\\"customHeight\\\":false,\\\"max\\\":900,\\\"min\\\":320}},\\\"overflowHiddenPage\\\":0,\\\"focus\\\":{\\\"offsetTop\\\":\\\"#wpadminbar\\\",\\\"offsetBottom\\\":\\\"\\\"}},\\\"controls\\\":{\\\"mousewheel\\\":0,\\\"touch\\\":\\\"horizontal\\\",\\\"keyboard\\\":1,\\\"blockCarouselInteraction\\\":1},\\\"playWhenVisible\\\":1,\\\"playWhenVisibleAt\\\":0.5,\\\"lazyLoad\\\":0,\\\"lazyLoadNeighbor\\\":0,\\\"blockrightclick\\\":0,\\\"maintainSession\\\":0,\\\"autoplay\\\":{\\\"enabled\\\":1,\\\"start\\\":1,\\\"duration\\\":3500,\\\"autoplayLoop\\\":1,\\\"allowReStart\\\":0,\\\"reverse\\\":0,\\\"pause\\\":{\\\"click\\\":1,\\\"mouse\\\":\\\"0\\\",\\\"mediaStarted\\\":1},\\\"resume\\\":{\\\"click\\\":1,\\\"mouse\\\":\\\"0\\\",\\\"mediaEnded\\\":1,\\\"slidechanged\\\":0},\\\"interval\\\":1,\\\"intervalModifier\\\":\\\"loop\\\",\\\"intervalSlide\\\":\\\"current\\\"},\\\"perspective\\\":1500,\\\"layerMode\\\":{\\\"playOnce\\\":0,\\\"playFirstLayer\\\":1,\\\"mode\\\":\\\"skippable\\\",\\\"inAnimation\\\":\\\"mainInEnd\\\"},\\\"bgAnimations\\\":{\\\"global\\\":[{\\\"type\\\":\\\"Flat\\\",\\\"tiles\\\":{\\\"crop\\\":false,\\\"delay\\\":0,\\\"sequence\\\":\\\"ForwardDiagonal\\\"},\\\"main\\\":{\\\"type\\\":\\\"both\\\",\\\"duration\\\":0.75,\\\"current\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"scale\\\":0.5,\\\"opacity\\\":0},\\\"next\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"opacity\\\":0,\\\"scale\\\":1.5}},\\\"invert\\\":{\\\"current\\\":{\\\"scale\\\":1.5},\\\"next\\\":{\\\"scale\\\":0.5}}},{\\\"type\\\":\\\"Flat\\\",\\\"tiles\\\":{\\\"delay\\\":0,\\\"sequence\\\":\\\"ForwardDiagonal\\\"},\\\"main\\\":{\\\"type\\\":\\\"both\\\",\\\"duration\\\":1,\\\"zIndex\\\":2,\\\"current\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"opacity\\\":0}}},{\\\"type\\\":\\\"Flat\\\",\\\"tiles\\\":{\\\"crop\\\":false,\\\"delay\\\":0,\\\"sequence\\\":\\\"ForwardDiagonal\\\"},\\\"main\\\":{\\\"type\\\":\\\"both\\\",\\\"duration\\\":0.75,\\\"current\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"scale\\\":1.5,\\\"opacity\\\":0},\\\"next\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"opacity\\\":0,\\\"scale\\\":0.5}},\\\"invert\\\":{\\\"current\\\":{\\\"scale\\\":0.5},\\\"next\\\":{\\\"scale\\\":1.5}}},{\\\"type\\\":\\\"Flat\\\",\\\"tiles\\\":{\\\"crop\\\":true,\\\"delay\\\":0,\\\"sequence\\\":\\\"ForwardDiagonal\\\"},\\\"main\\\":{\\\"type\\\":\\\"both\\\",\\\"duration\\\":1,\\\"current\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"scale\\\":0.7},\\\"next\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"xP\\\":100}},\\\"invert\\\":{\\\"zIndex\\\":2,\\\"current\\\":{\\\"xP\\\":100,\\\"scale\\\":1},\\\"next\\\":{\\\"scale\\\":0.7,\\\"xP\\\":0}}}],\\\"color\\\":\\\"RGBA(51,51,51,1)\\\",\\\"speed\\\":\\\"normal\\\",\\\"slides\\\":[{\\\"animation\\\":[{\\\"type\\\":\\\"Flat\\\",\\\"tiles\\\":{\\\"crop\\\":false,\\\"delay\\\":0,\\\"sequence\\\":\\\"ForwardDiagonal\\\"},\\\"main\\\":{\\\"type\\\":\\\"both\\\",\\\"duration\\\":0.75,\\\"current\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"scale\\\":0.5,\\\"opacity\\\":0},\\\"next\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"opacity\\\":0,\\\"scale\\\":1.5}},\\\"invert\\\":{\\\"current\\\":{\\\"scale\\\":1.5},\\\"next\\\":{\\\"scale\\\":0.5}}},{\\\"type\\\":\\\"Flat\\\",\\\"tiles\\\":{\\\"delay\\\":0,\\\"sequence\\\":\\\"ForwardDiagonal\\\"},\\\"main\\\":{\\\"type\\\":\\\"both\\\",\\\"duration\\\":1,\\\"zIndex\\\":2,\\\"current\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"opacity\\\":0}}},{\\\"type\\\":\\\"Flat\\\",\\\"tiles\\\":{\\\"crop\\\":false,\\\"delay\\\":0,\\\"sequence\\\":\\\"ForwardDiagonal\\\"},\\\"main\\\":{\\\"type\\\":\\\"both\\\",\\\"duration\\\":0.75,\\\"current\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"scale\\\":1.5,\\\"opacity\\\":0},\\\"next\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"opacity\\\":0,\\\"scale\\\":0.5}},\\\"invert\\\":{\\\"current\\\":{\\\"scale\\\":0.5},\\\"next\\\":{\\\"scale\\\":1.5}}},{\\\"type\\\":\\\"Flat\\\",\\\"tiles\\\":{\\\"crop\\\":true,\\\"delay\\\":0,\\\"sequence\\\":\\\"ForwardDiagonal\\\"},\\\"main\\\":{\\\"type\\\":\\\"both\\\",\\\"duration\\\":1,\\\"current\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"scale\\\":0.7},\\\"next\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"xP\\\":100}},\\\"invert\\\":{\\\"zIndex\\\":2,\\\"current\\\":{\\\"xP\\\":100,\\\"scale\\\":1},\\\"next\\\":{\\\"scale\\\":0.7,\\\"xP\\\":0}}}],\\\"speed\\\":\\\"normal\\\",\\\"color\\\":\\\"RGBA(51,51,51,1)\\\"},{\\\"animation\\\":[{\\\"type\\\":\\\"Flat\\\",\\\"tiles\\\":{\\\"crop\\\":false,\\\"delay\\\":0,\\\"sequence\\\":\\\"ForwardDiagonal\\\"},\\\"main\\\":{\\\"type\\\":\\\"both\\\",\\\"duration\\\":0.75,\\\"current\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"scale\\\":1.5,\\\"opacity\\\":0},\\\"next\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"opacity\\\":0,\\\"scale\\\":0.5}},\\\"invert\\\":{\\\"current\\\":{\\\"scale\\\":0.5},\\\"next\\\":{\\\"scale\\\":1.5}}}],\\\"speed\\\":\\\"normal\\\",\\\"color\\\":\\\"RGBA(51,51,51,1)\\\"},{\\\"animation\\\":[{\\\"type\\\":\\\"Flat\\\",\\\"tiles\\\":{\\\"crop\\\":false,\\\"delay\\\":0,\\\"sequence\\\":\\\"ForwardDiagonal\\\"},\\\"main\\\":{\\\"type\\\":\\\"both\\\",\\\"duration\\\":0.75,\\\"current\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"scale\\\":1.5,\\\"opacity\\\":0},\\\"next\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"opacity\\\":0,\\\"scale\\\":0.5}},\\\"invert\\\":{\\\"current\\\":{\\\"scale\\\":0.5},\\\"next\\\":{\\\"scale\\\":1.5}}}],\\\"speed\\\":\\\"normal\\\",\\\"color\\\":\\\"RGBA(51,51,51,1)\\\"},{\\\"animation\\\":[{\\\"type\\\":\\\"Flat\\\",\\\"tiles\\\":{\\\"delay\\\":0,\\\"sequence\\\":\\\"ForwardDiagonal\\\"},\\\"main\\\":{\\\"type\\\":\\\"both\\\",\\\"duration\\\":1,\\\"zIndex\\\":2,\\\"current\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"opacity\\\":0}}}],\\\"speed\\\":\\\"normal\\\",\\\"color\\\":\\\"RGBA(51,51,51,1)\\\"},{\\\"animation\\\":[{\\\"type\\\":\\\"Flat\\\",\\\"tiles\\\":{\\\"crop\\\":false,\\\"delay\\\":0,\\\"sequence\\\":\\\"ForwardDiagonal\\\"},\\\"main\\\":{\\\"type\\\":\\\"both\\\",\\\"duration\\\":0.75,\\\"current\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"scale\\\":1.5,\\\"opacity\\\":0},\\\"next\\\":{\\\"ease\\\":\\\"easeOutCubic\\\",\\\"opacity\\\":0,\\\"scale\\\":0.5}},\\\"invert\\\":{\\\"current\\\":{\\\"scale\\\":0.5},\\\"next\\\":{\\\"scale\\\":1.5}}}],\\\"speed\\\":\\\"normal\\\",\\\"color\\\":\\\"RGBA(51,51,51,1)\\\"}]},\\\"mainanimation\\\":{\\\"type\\\":\\\"fade\\\",\\\"duration\\\":800,\\\"delay\\\":0,\\\"ease\\\":\\\"easeOutQuad\\\",\\\"shiftedBackgroundAnimation\\\":0},\\\"carousel\\\":1,\\\"initCallbacks\\\":function(){new _N2.SmartSliderWidgetArrowImage(this);new _N2.SmartSliderWidgetBulletTransition(this, {\\\"area\\\":10,\\\"dotClasses\\\":\\\"n2-style-0b1501f187dd486f0b3833aafb1a1b8d-dot \\\",\\\"mode\\\":\\\"\\\",\\\"action\\\":\\\"click\\\"});new _N2.SmartSliderWidget(this, \'shadow\', \'.nextend-shadow\');}});});\"],\"globalInline\":[]},\"googleFonts\":{\"staticGroupPreload\":[],\"staticGroup\":[],\"files\":[],\"urls\":[],\"codes\":[],\"firstCodes\":[],\"inline\":[],\"globalInline\":[]},\"image\":{\"images\":[\"\\/\\/guidoconstructioninc.com\\/wp-content\\/uploads\\/slider\\/cache\\/98bdc6749c6e1880544cb4781926df89\\/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths.jpg\",\"\\/\\/guidoconstructioninc.com\\/wp-content\\/uploads\\/slider\\/cache\\/f6c988dc9c4db5fd6c0e4b49256fe5a5\\/ParkingLot_Concrete_Work_Oregon_Guido_Construction_Douglas_County.jpg\",\"\\/\\/guidoconstructioninc.com\\/wp-content\\/uploads\\/slider\\/cache\\/2a3ded8d8fd5d6c2a4d4bd15efefe67a\\/DJI_20240703082308_0039_D.png\",\"\\/\\/guidoconstructioninc.com\\/wp-content\\/uploads\\/slider\\/cache\\/02d46347ecc425fe74f54ef81e77eec8\\/Douglas-Ave-ada-sidewalk-Guido-Construction-Inc-23.jpg\",\"\\/\\/guidoconstructioninc.com\\/wp-content\\/uploads\\/slider\\/cache\\/5c95f65ddc0f00ca2f283d920a68eea4\\/Douglas-Ave-tear-up-concrete-concrete-cutting-Guido-Construction-Inc-92.jpg\",\"\\/\\/guidoconstructioninc.com\\/wp-content\\/uploads\\/2025\\/09\\/Guido-Construction-Inc-White-LogoRGB.png\"]}}}',0,1);
/*!40000 ALTER TABLE `wpwn_nextend2_section_storage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_nextend2_smartslider3_generators`
--

DROP TABLE IF EXISTS `wpwn_nextend2_smartslider3_generators`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_nextend2_smartslider3_generators` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `group` varchar(254) NOT NULL,
  `type` varchar(254) NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_nextend2_smartslider3_generators`
--

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

--
-- Table structure for table `wpwn_nextend2_smartslider3_sliders`
--

DROP TABLE IF EXISTS `wpwn_nextend2_smartslider3_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_nextend2_smartslider3_sliders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `alias` text DEFAULT NULL,
  `title` text NOT NULL,
  `type` varchar(30) NOT NULL,
  `params` mediumtext NOT NULL,
  `slider_status` varchar(50) NOT NULL DEFAULT 'published',
  `time` datetime NOT NULL,
  `thumbnail` text NOT NULL,
  `ordering` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `time` (`time`),
  KEY `slider_status` (`slider_status`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_nextend2_smartslider3_sliders`
--

LOCK TABLES `wpwn_nextend2_smartslider3_sliders` WRITE;
/*!40000 ALTER TABLE `wpwn_nextend2_smartslider3_sliders` DISABLE KEYS */;
INSERT INTO `wpwn_nextend2_smartslider3_sliders` VALUES
(1,NULL,'Tutorial Slider','simple','{\"aria-label\":\"Slider\",\"alias-id\":\"\",\"alias-smoothscroll\":\"\",\"alias-slideswitch\":\"\",\"background\":\"\",\"background-fixed\":\"0\",\"background-size\":\"cover\",\"background-color\":\"FFFFFF00\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"align\":\"normal\",\"margin\":\"0|*|0|*|0|*|0\",\"padding\":\"0|*|0|*|0|*|0\",\"perspective\":\"1000\",\"border-width\":\"0\",\"border-color\":\"3E3E3Eff\",\"border-radius\":\"0\",\"slider-preset\":\"\",\"slider-css\":\"\",\"width\":\"1200\",\"height\":\"600\",\"mobileportrait\":\"1\",\"mobilelandscape\":\"1\",\"tabletportrait\":\"1\",\"tabletlandscape\":\"1\",\"desktopportrait\":\"1\",\"desktoplandscape\":\"1\",\"responsiveLimitSlideWidth\":\"1\",\"responsiveSlideWidthDesktopLandscape\":\"0\",\"responsiveSlideWidthMaxDesktopLandscape\":\"1600\",\"responsiveSlideWidth\":\"0\",\"responsiveSlideWidthMax\":\"3000\",\"responsiveSlideWidthTabletLandscape\":\"0\",\"responsiveSlideWidthMaxTabletLandscape\":\"1200\",\"responsiveSlideWidthTablet\":\"0\",\"responsiveSlideWidthMaxTablet\":\"3000\",\"responsiveSlideWidthMobileLandscape\":\"0\",\"responsiveSlideWidthMaxMobileLandscape\":\"740\",\"responsiveSlideWidthMobile\":\"0\",\"responsiveSlideWidthMaxMobile\":\"480\",\"responsive-breakpoint-desktop-portrait\":\"1440\",\"responsive-breakpoint-desktop-portrait-landscape\":\"1440\",\"responsive-breakpoint-tablet-landscape\":\"1300\",\"responsive-breakpoint-tablet-landscape-landscape\":\"1300\",\"responsive-breakpoint-tablet-portrait\":\"1199\",\"responsive-breakpoint-tablet-portrait-landscape\":\"1199\",\"responsive-breakpoint-mobile-landscape\":\"900\",\"responsive-breakpoint-mobile-landscape-landscape\":\"1050\",\"responsive-breakpoint-mobile-portrait\":\"700\",\"responsive-breakpoint-mobile-portrait-landscape\":\"900\",\"responsive-breakpoint-desktop-landscape-enabled\":\"0\",\"responsive-breakpoint-tablet-landscape-enabled\":\"0\",\"responsive-breakpoint-tablet-portrait-enabled\":\"1\",\"responsive-breakpoint-mobile-landscape-enabled\":\"0\",\"responsive-breakpoint-mobile-portrait-enabled\":\"1\",\"responsive-breakpoint-global\":\"0\",\"breakpoints-orientation\":\"portrait\",\"responsive-mode\":\"fullwidth\",\"responsiveSliderHeightMin\":\"0\",\"responsiveForceFull\":\"1\",\"responsiveForceFullOverflowX\":\"body\",\"responsiveForceFullHorizontalSelector\":\"body\",\"slider-size-override\":\"0\",\"slider-size-override-mobile-portrait\":\"0\",\"mobile-portrait-width\":\"320\",\"mobile-portrait-height\":\"568\",\"slider-size-override-mobile-landscape\":\"0\",\"mobile-landscape-width\":\"568\",\"mobile-landscape-height\":\"320\",\"slider-size-override-tablet-portrait\":\"0\",\"tablet-portrait-width\":\"768\",\"tablet-portrait-height\":\"1024\",\"slider-size-override-tablet-landscape\":\"0\",\"tablet-landscape-width\":\"1024\",\"tablet-landscape-height\":\"768\",\"slider-size-override-desktop-landscape\":\"0\",\"desktop-landscape-width\":\"1440\",\"desktop-landscape-height\":\"900\",\"controlsTouch\":\"horizontal\",\"controlsScroll\":\"0\",\"controlsKeyboard\":\"1\",\"widget-arrow-enabled\":\"0\",\"widgetarrow\":\"imageEmpty\",\"widget-arrow-previous\":\"thin-horizontal.svg\",\"widget-arrow-previous-image\":\"\",\"widget-arrow-previous-color\":\"ffffffcc\",\"widget-arrow-previous-hover\":\"1\",\"widget-arrow-previous-hover-color\":\"ffffffff\",\"widget-arrow-mirror\":\"1\",\"widget-arrow-next\":\"thin-horizontal.svg\",\"widget-arrow-next-image\":\"\",\"widget-arrow-next-color\":\"ffffffcc\",\"widget-arrow-next-hover\":\"0\",\"widget-arrow-next-hover-color\":\"ffffffcc\",\"widget-arrow-style\":\"\",\"widget-arrow-previous-position-mode\":\"simple\",\"widget-arrow-previous-position-area\":\"6\",\"widget-arrow-previous-position-stack\":\"1\",\"widget-arrow-previous-position-offset\":\"15\",\"widget-arrow-previous-position-horizontal\":\"left\",\"widget-arrow-previous-position-horizontal-position\":\"0\",\"widget-arrow-previous-position-horizontal-unit\":\"px\",\"widget-arrow-previous-position-vertical\":\"top\",\"widget-arrow-previous-position-vertical-position\":\"0\",\"widget-arrow-previous-position-vertical-unit\":\"px\",\"widget-arrow-next-position-mode\":\"simple\",\"widget-arrow-next-position-area\":\"7\",\"widget-arrow-next-position-stack\":\"1\",\"widget-arrow-next-position-offset\":\"15\",\"widget-arrow-next-position-horizontal\":\"left\",\"widget-arrow-next-position-horizontal-position\":\"0\",\"widget-arrow-next-position-horizontal-unit\":\"px\",\"widget-arrow-next-position-vertical\":\"top\",\"widget-arrow-next-position-vertical-position\":\"0\",\"widget-arrow-next-position-vertical-unit\":\"px\",\"widget-arrow-animation\":\"fade\",\"widget-arrow-previous-alt\":\"previous arrow\",\"widget-arrow-next-alt\":\"next arrow\",\"widget-arrow-base64\":\"1\",\"widget-arrow-display-hover\":\"0\",\"widget-arrow-display-mobileportrait\":\"0\",\"widget-arrow-display-mobilelandscape\":\"0\",\"widget-arrow-display-tabletportrait\":\"1\",\"widget-arrow-display-tabletlandscape\":\"1\",\"widget-arrow-display-desktopportrait\":\"1\",\"widget-arrow-display-desktoplandscape\":\"1\",\"widget-arrow-exclude-slides\":\"\",\"widget-bullet-enabled\":\"1\",\"widgetbullet\":\"transition\",\"widget-bullet-position-mode\":\"simple\",\"widget-bullet-position-area\":\"10\",\"widget-bullet-position-stack\":\"1\",\"widget-bullet-position-offset\":\"5\",\"widget-bullet-position-horizontal\":\"left\",\"widget-bullet-position-horizontal-position\":\"0\",\"widget-bullet-position-horizontal-unit\":\"px\",\"widget-bullet-position-vertical\":\"top\",\"widget-bullet-position-vertical-position\":\"0\",\"widget-bullet-position-vertical-unit\":\"px\",\"widget-bullet-action\":\"click\",\"widget-bullet-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"00000000\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"5|*|5|*|5|*|5|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"2|*|solid|*|ffffffcc\\\",\\\"borderradius\\\":\\\"50\\\",\\\"extra\\\":\\\"margin: 4px;\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffcc\\\",\\\"border\\\":\\\"2|*|solid|*|ffffffcc\\\"}]}\",\"widget-bullet-bar\":\"\",\"widget-bullet-bar-full-size\":\"0\",\"widget-bullet-align\":\"center\",\"widget-bullet-orientation\":\"auto\",\"widget-bullet-thumbnail-show-image\":\"0\",\"widget-bullet-thumbnail-width\":\"60\",\"widget-bullet-thumbnail-height\":\"60\",\"widget-bullet-thumbnail-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"00000080\\\",\\\"padding\\\":\\\"3|*|3|*|3|*|3|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"3\\\",\\\"extra\\\":\\\"margin: 5px;\\\"}]}\",\"widget-bullet-thumbnail-side\":\"before\",\"widget-bullet-display-hover\":\"0\",\"widget-bullet-display-mobileportrait\":\"1\",\"widget-bullet-display-mobilelandscape\":\"1\",\"widget-bullet-display-tabletportrait\":\"1\",\"widget-bullet-display-tabletlandscape\":\"1\",\"widget-bullet-display-desktopportrait\":\"1\",\"widget-bullet-display-desktoplandscape\":\"1\",\"widget-bullet-exclude-slides\":\"\",\"widget-bar-enabled\":\"0\",\"widgetbar\":\"horizontal\",\"widget-bar-position-mode\":\"simple\",\"widget-bar-position-area\":\"10\",\"widget-bar-position-stack\":\"1\",\"widget-bar-position-offset\":\"30\",\"widget-bar-position-horizontal\":\"left\",\"widget-bar-position-horizontal-position\":\"0\",\"widget-bar-position-horizontal-unit\":\"px\",\"widget-bar-position-vertical\":\"top\",\"widget-bar-position-vertical-position\":\"0\",\"widget-bar-position-vertical-unit\":\"px\",\"widget-bar-animate\":\"0\",\"widget-bar-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"5|*|20|*|5|*|20|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"40\\\",\\\"extra\\\":\\\"\\\"}]}\",\"widget-bar-show-title\":\"1\",\"widget-bar-font-title\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000c7\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"bold\\\":0,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\",\\\"extra\\\":\\\"vertical-align: middle;\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"google(@import url(http://fonts.googleapis.com/css?family=Raleway);),Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-bar-show-description\":\"1\",\"widget-bar-font-description\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000c7\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"bold\\\":0,\\\"italic\\\":1,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\",\\\"extra\\\":\\\"vertical-align: middle;\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"Raleway,Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-bar-slide-count\":\"0\",\"widget-bar-width\":\"100%\",\"widget-bar-full-width\":\"0\",\"widget-bar-separator\":\" - \",\"widget-bar-align\":\"center\",\"widget-bar-display-hover\":\"0\",\"widget-bar-display-mobileportrait\":\"1\",\"widget-bar-display-mobilelandscape\":\"1\",\"widget-bar-display-tabletportrait\":\"1\",\"widget-bar-display-tabletlandscape\":\"1\",\"widget-bar-display-desktopportrait\":\"1\",\"widget-bar-display-desktoplandscape\":\"1\",\"widget-bar-exclude-slides\":\"\",\"widget-thumbnail-enabled\":\"0\",\"widgetthumbnail\":\"default\",\"widget-thumbnail-show-image\":\"1\",\"widget-thumbnail-width\":\"100\",\"widget-thumbnail-height\":\"60\",\"widget-thumbnail-position-mode\":\"simple\",\"widget-thumbnail-position-area\":\"12\",\"widget-thumbnail-position-stack\":\"1\",\"widget-thumbnail-position-offset\":\"0\",\"widget-thumbnail-position-horizontal\":\"left\",\"widget-thumbnail-position-horizontal-position\":\"0\",\"widget-thumbnail-position-horizontal-unit\":\"px\",\"widget-thumbnail-position-vertical\":\"top\",\"widget-thumbnail-position-vertical-position\":\"0\",\"widget-thumbnail-position-vertical-unit\":\"px\",\"widget-thumbnail-action\":\"click\",\"widget-thumbnail-align-content\":\"start\",\"widget-thumbnail-style-bar\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"242424ff\\\",\\\"padding\\\":\\\"3|*|3|*|3|*|3|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"0\\\",\\\"extra\\\":\\\"\\\"}]}\",\"widget-thumbnail-style-slides\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"00000000\\\",\\\"padding\\\":\\\"0|*|0|*|0|*|0|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|ffffff00\\\",\\\"borderradius\\\":\\\"0\\\",\\\"opacity\\\":\\\"40\\\",\\\"extra\\\":\\\"margin: 3px;\\ntransition: all 0.4s;\\nbackground-size: cover;\\\"},{\\\"border\\\":\\\"0|*|solid|*|ffffffcc\\\",\\\"opacity\\\":\\\"100\\\",\\\"extra\\\":\\\"\\\"}]}\",\"widget-thumbnail-title-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"3|*|10|*|3|*|10|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"0\\\",\\\"extra\\\":\\\"bottom: 0;\\nleft: 0;\\\"}]}\",\"widget-thumbnail-title\":\"0\",\"widget-thumbnail-title-font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"12||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ab\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.2\\\",\\\"bold\\\":0,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"google(@import url(http://fonts.googleapis.com/css?family=Raleway);),Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-thumbnail-description\":\"0\",\"widget-thumbnail-description-font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"12||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ab\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"bold\\\":0,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"google(@import url(http://fonts.googleapis.com/css?family=Raleway);),Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-thumbnail-caption-placement\":\"overlay\",\"widget-thumbnail-caption-size\":\"100\",\"widget-thumbnail-arrow\":\"1\",\"widget-thumbnail-arrow-width\":\"26\",\"widget-thumbnail-arrow-offset\":\"0\",\"widget-thumbnail-arrow-prev-alt\":\"previous arrow\",\"widget-thumbnail-arrow-next-alt\":\"next arrow\",\"widget-thumbnail-arrow-image\":\"\",\"widget-thumbnail-group\":\"1\",\"widget-thumbnail-invert-group-direction\":\"0\",\"widget-thumbnail-orientation\":\"auto\",\"widget-thumbnail-size\":\"100%\",\"widget-thumbnail-display-hover\":\"0\",\"widget-thumbnail-display-mobileportrait\":\"1\",\"widget-thumbnail-display-mobilelandscape\":\"1\",\"widget-thumbnail-display-tabletportrait\":\"1\",\"widget-thumbnail-display-tabletlandscape\":\"1\",\"widget-thumbnail-display-desktopportrait\":\"1\",\"widget-thumbnail-display-desktoplandscape\":\"1\",\"widget-thumbnail-exclude-slides\":\"\",\"widget-shadow-enabled\":\"0\",\"widgetshadow\":\"shadow\",\"widget-shadow-shadow\":\"dark.png\",\"widget-shadow-shadow-image\":\"\",\"widget-shadow-width\":\"100%\",\"widget-shadow-display-mobileportrait\":\"1\",\"widget-shadow-display-mobilelandscape\":\"1\",\"widget-shadow-display-tabletportrait\":\"1\",\"widget-shadow-display-tabletlandscape\":\"1\",\"widget-shadow-display-desktopportrait\":\"1\",\"widget-shadow-display-desktoplandscape\":\"1\",\"widget-shadow-exclude-slides\":\"\",\"widget-fullscreen-enabled\":\"0\",\"widgetfullscreen\":\"image\",\"widget-fullscreen-tonormal\":\"full1.svg\",\"widget-fullscreen-tonormal-image\":\"\",\"widget-fullscreen-tonormal-color\":\"ffffffcc\",\"widget-fullscreen-mirror\":\"1\",\"widget-fullscreen-tofull\":\"full1.svg\",\"widget-fullscreen-tofull-image\":\"\",\"widget-fullscreen-tofull-color\":\"ffffffcc\",\"widget-fullscreen-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"10|*|10|*|10|*|10|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"3\\\",\\\"extra\\\":\\\"\\\"},{\\\"backgroundcolor\\\":\\\"000000ab\\\"}]}\",\"widget-fullscreen-position-mode\":\"simple\",\"widget-fullscreen-position-area\":\"4\",\"widget-fullscreen-position-stack\":\"1\",\"widget-fullscreen-position-offset\":\"15\",\"widget-fullscreen-position-horizontal\":\"left\",\"widget-fullscreen-position-horizontal-position\":\"0\",\"widget-fullscreen-position-horizontal-unit\":\"px\",\"widget-fullscreen-position-vertical\":\"top\",\"widget-fullscreen-position-vertical-position\":\"0\",\"widget-fullscreen-position-vertical-unit\":\"px\",\"widget-fullscreen-responsive-desktop\":\"1\",\"widget-fullscreen-responsive-tablet\":\"0.7\",\"widget-fullscreen-responsive-mobile\":\"0.5\",\"widget-fullscreen-display-hover\":\"0\",\"widget-fullscreen-display-mobileportrait\":\"1\",\"widget-fullscreen-display-mobilelandscape\":\"1\",\"widget-fullscreen-display-tabletportrait\":\"1\",\"widget-fullscreen-display-tabletlandscape\":\"1\",\"widget-fullscreen-display-desktopportrait\":\"1\",\"widget-fullscreen-display-desktoplandscape\":\"1\",\"widget-fullscreen-exclude-slides\":\"\",\"widget-html-enabled\":\"0\",\"widgethtml\":\"html\",\"widget-html-position-mode\":\"simple\",\"widget-html-position-area\":\"2\",\"widget-html-position-stack\":\"1\",\"widget-html-position-offset\":\"0\",\"widget-html-position-horizontal\":\"left\",\"widget-html-position-horizontal-position\":\"0\",\"widget-html-position-horizontal-unit\":\"px\",\"widget-html-position-vertical\":\"top\",\"widget-html-position-vertical-position\":\"0\",\"widget-html-position-vertical-unit\":\"px\",\"widget-html-code\":\"\",\"widget-html-display-hover\":\"0\",\"widget-html-display-mobileportrait\":\"1\",\"widget-html-display-mobilelandscape\":\"1\",\"widget-html-display-tabletportrait\":\"1\",\"widget-html-display-tabletlandscape\":\"1\",\"widget-html-display-desktopportrait\":\"1\",\"widget-html-display-desktoplandscape\":\"1\",\"widget-html-exclude-slides\":\"\",\"animation\":\"fade\",\"animation-duration\":\"500\",\"animation-delay\":\"0\",\"animation-easing\":\"easeOutQuad\",\"carousel\":\"1\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"normal\",\"animation-shifted-background-animation\":\"auto\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"shape-divider\":\"\",\"particle\":\"\",\"playfirstlayer\":\"1\",\"playonce\":\"0\",\"layer-animation-play-in\":\"end\",\"layer-animation-play-mode\":\"skippable\",\"parallax-enabled\":\"1\",\"parallax-enabled-mobile\":\"0\",\"parallax-3d\":\"0\",\"parallax-animate\":\"1\",\"parallax-horizontal\":\"mouse\",\"parallax-vertical\":\"mouse\",\"parallax-mouse-origin\":\"slider\",\"parallax-scroll-move\":\"both\",\"autoplay\":\"0\",\"autoplayDuration\":\"8000\",\"autoplayStart\":\"1\",\"autoplayAllowReStart\":\"0\",\"autoplayLoop\":\"1\",\"autoplayfinish\":\"1|*|loop|*|current\",\"loop-single-slide\":\"0\",\"autoplayStopClick\":\"1\",\"autoplayStopMouse\":\"0\",\"autoplayStopMedia\":\"1\",\"autoplayResumeClick\":\"0\",\"autoplayResumeMouse\":\"0\",\"autoplayResumeMedia\":\"1\",\"widget-autoplay-enabled\":\"0\",\"widgetautoplay\":\"image\",\"widget-autoplay-play\":\"small-light.svg\",\"widget-autoplay-play-image\":\"\",\"widget-autoplay-play-color\":\"ffffffcc\",\"widget-autoplay-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"10|*|10|*|10|*|10|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"3\\\",\\\"extra\\\":\\\"\\\"},{\\\"backgroundcolor\\\":\\\"000000ab\\\"}]}\",\"widget-autoplay-mirror\":\"1\",\"widget-autoplay-pause\":\"small-light.svg\",\"widget-autoplay-pause-image\":\"\",\"widget-autoplay-pause-color\":\"ffffffcc\",\"widget-autoplay-responsive-desktop\":\"1\",\"widget-autoplay-responsive-tablet\":\"0.7\",\"widget-autoplay-responsive-mobile\":\"0.5\",\"widget-autoplay-position-mode\":\"simple\",\"widget-autoplay-position-area\":\"4\",\"widget-autoplay-position-stack\":\"1\",\"widget-autoplay-position-offset\":\"15\",\"widget-autoplay-position-horizontal\":\"left\",\"widget-autoplay-position-horizontal-position\":\"0\",\"widget-autoplay-position-horizontal-unit\":\"px\",\"widget-autoplay-position-vertical\":\"top\",\"widget-autoplay-position-vertical-position\":\"0\",\"widget-autoplay-position-vertical-unit\":\"px\",\"widget-autoplay-display-hover\":\"0\",\"widget-autoplay-display-mobileportrait\":\"1\",\"widget-autoplay-display-mobilelandscape\":\"1\",\"widget-autoplay-display-tabletportrait\":\"1\",\"widget-autoplay-display-tabletlandscape\":\"1\",\"widget-autoplay-display-desktopportrait\":\"1\",\"widget-autoplay-display-desktoplandscape\":\"1\",\"widget-autoplay-exclude-slides\":\"\",\"widget-indicator-enabled\":\"0\",\"widgetindicator\":\"pie\",\"widget-indicator-position-mode\":\"simple\",\"widget-indicator-position-area\":\"4\",\"widget-indicator-position-stack\":\"1\",\"widget-indicator-position-offset\":\"15\",\"widget-indicator-position-horizontal\":\"left\",\"widget-indicator-position-horizontal-position\":\"0\",\"widget-indicator-position-horizontal-unit\":\"px\",\"widget-indicator-position-vertical\":\"top\",\"widget-indicator-position-vertical-position\":\"0\",\"widget-indicator-position-vertical-unit\":\"px\",\"widget-indicator-size\":\"25\",\"widget-indicator-thickness\":\"30\",\"widget-indicator-track\":\"000000ab\",\"widget-indicator-bar\":\"ffffffff\",\"widget-indicator-style\":\"\",\"widget-indicator-display-hover\":\"0\",\"widget-indicator-display-mobileportrait\":\"1\",\"widget-indicator-display-mobilelandscape\":\"1\",\"widget-indicator-display-tabletportrait\":\"1\",\"widget-indicator-display-tabletlandscape\":\"1\",\"widget-indicator-display-desktopportrait\":\"1\",\"widget-indicator-display-desktoplandscape\":\"1\",\"widget-indicator-exclude-slides\":\"\",\"imageload\":\"0\",\"imageloadNeighborSlides\":\"0\",\"optimize-scale\":\"0\",\"optimize-quality\":\"70\",\"optimize-thumbnail-scale\":\"0\",\"optimize-thumbnail-quality\":\"70\",\"optimize-slide-width-normal\":\"1920\",\"optimizeThumbnailWidth\":\"100\",\"optimizeThumbnailHeight\":\"60\",\"layer-image-optimize\":\"0\",\"layer-image-width-tablet\":\"800\",\"layer-image-width-mobile\":\"425\",\"layer-image-base64\":\"0\",\"layer-image-base64-size\":\"50\",\"slides-background-video-mobile\":\"1\",\"playWhenVisible\":\"1\",\"playWhenVisibleAt\":\"50\",\"dependency\":\"\",\"delay\":\"0\",\"is-delayed\":\"0\",\"backgroundMode\":\"fill\",\"slide-css\":\"\",\"randomize\":\"0\",\"randomizeFirst\":\"0\",\"randomize-cache\":\"1\",\"variations\":\"5\",\"reverse-slides\":\"0\",\"maximumslidecount\":\"1000\",\"maintain-session\":\"0\",\"global-lightbox\":\"0\",\"global-lightbox-label\":\"0\",\"slide-background-parallax\":\"0\",\"slide-background-parallax-strength\":\"50\",\"bg-parallax-tablet\":\"0\",\"bg-parallax-mobile\":\"0\",\"blockrightclick\":\"0\",\"controlsBlockCarouselInteraction\":\"1\",\"clear-both\":\"1\",\"clear-both-after\":\"1\",\"overflow-hidden-page\":\"0\",\"responsiveFocusUser\":\"1\",\"responsiveFocusEdge\":\"auto\",\"classes\":\"\",\"custom-css-codes\":\"\",\"callbacks\":\"\",\"related-posts\":\"\"}','trash','2020-02-25 13:53:41','https://smartslider3.com/wp-content/uploads/slider404/tutorialsliderthumbnail-1.png',1),
(2,NULL,'Home Page Slider','simple','{\"aria-label\":\"\",\"alias-id\":\"\",\"alias-smoothscroll\":\"\",\"alias-slideswitch\":\"\",\"alias-slideswitch-scroll\":\"1\",\"align\":\"normal\",\"margin\":\"0|*|0|*|0|*|0\",\"width\":\"1200\",\"height\":\"800\",\"responsiveLimitSlideWidth\":\"1\",\"responsiveSlideWidth\":\"0\",\"responsiveSlideWidthMax\":\"3000\",\"responsiveSlideWidthTablet\":\"0\",\"responsiveSlideWidthMaxTablet\":\"3000\",\"responsiveSlideWidthMobile\":\"1\",\"responsiveSlideWidthMaxMobile\":\"480\",\"responsive-breakpoint-tablet-portrait\":\"1199\",\"responsive-breakpoint-tablet-portrait-landscape\":\"1199\",\"responsive-breakpoint-mobile-portrait\":\"700\",\"responsive-breakpoint-mobile-portrait-landscape\":\"900\",\"responsive-breakpoint-tablet-portrait-enabled\":\"1\",\"responsive-breakpoint-mobile-portrait-enabled\":\"1\",\"responsive-breakpoint-global\":\"1\",\"breakpoints-orientation\":\"landscape\",\"responsive-mode\":\"fullwidth\",\"responsiveSliderHeightMin\":\"0\",\"responsiveForceFull\":\"0\",\"responsiveForceFullOverflowX\":\"body\",\"responsiveForceFullHorizontalSelector\":\"body\",\"controlsTouch\":\"horizontal\",\"controlsScroll\":\"0\",\"controlsKeyboard\":\"1\",\"widget-arrow-enabled\":\"1\",\"widgetarrow\":\"imageEmpty\",\"widget-arrow-previous\":\"thin-horizontal.svg\",\"widget-arrow-previous-color\":\"092a5197\",\"widget-arrow-previous-hover\":\"1\",\"widget-arrow-previous-hover-color\":\"ffffffcc\",\"widget-arrow-style\":\"\",\"widget-arrow-previous-position-area\":\"6\",\"widget-arrow-previous-position-stack\":\"1\",\"widget-arrow-previous-position-offset\":\"15\",\"widget-arrow-next-position-area\":\"7\",\"widget-arrow-next-position-stack\":\"1\",\"widget-arrow-next-position-offset\":\"15\",\"widget-arrow-previous-alt\":\"previous arrow\",\"widget-arrow-next-alt\":\"next arrow\",\"widget-arrow-base64\":\"1\",\"widget-arrow-desktop-image-width\":\"32\",\"widget-arrow-tablet-image-width\":\"32\",\"widget-arrow-mobile-image-width\":\"16\",\"widget-arrow-display-hover\":\"0\",\"widget-arrow-display-mobileportrait\":\"0\",\"widget-arrow-display-tabletportrait\":\"1\",\"widget-arrow-display-desktopportrait\":\"1\",\"widget-bullet-enabled\":\"1\",\"widgetbullet\":\"transition\",\"widget-bullet-position-area\":\"10\",\"widget-bullet-position-stack\":\"1\",\"widget-bullet-position-offset\":\"10\",\"widget-bullet-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"5|*|5|*|5|*|5|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"50\\\",\\\"extra\\\":\\\"margin: 4px;\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"1D81F9FF\\\"}]}\",\"widget-bullet-bar\":\"\",\"widget-bullet-thumbnail-show-image\":\"0\",\"widget-bullet-thumbnail-width\":\"60\",\"widget-bullet-thumbnail-height\":\"60\",\"widget-bullet-thumbnail-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"00000080\\\",\\\"padding\\\":\\\"3|*|3|*|3|*|3|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"3\\\",\\\"extra\\\":\\\"margin: 5px;\\\"}]}\",\"widget-bullet-thumbnail-side\":\"before\",\"widget-bullet-display-hover\":\"1\",\"widget-bullet-display-mobileportrait\":\"1\",\"widget-bullet-display-tabletportrait\":\"1\",\"widget-bullet-display-desktopportrait\":\"1\",\"widget-bar-enabled\":\"0\",\"widgetbar\":\"horizontal\",\"widget-bar-position-area\":\"10\",\"widget-bar-position-stack\":\"1\",\"widget-bar-position-offset\":\"30\",\"widget-bar-animate\":\"0\",\"widget-bar-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"5|*|20|*|5|*|20|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"40\\\",\\\"extra\\\":\\\"\\\"}]}\",\"widget-bar-show-title\":\"1\",\"widget-bar-font-title\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000c7\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"bold\\\":0,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\",\\\"extra\\\":\\\"vertical-align: middle;\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"Raleway,Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-bar-show-description\":\"1\",\"widget-bar-font-description\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000c7\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"bold\\\":0,\\\"italic\\\":1,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\",\\\"extra\\\":\\\"vertical-align: middle;\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"Raleway,Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-bar-slide-count\":\"0\",\"widget-bar-full-width\":\"0\",\"widget-bar-separator\":\" - \",\"widget-bar-align\":\"center\",\"widget-bar-display-hover\":\"0\",\"widget-bar-display-mobileportrait\":\"1\",\"widget-bar-display-tabletportrait\":\"1\",\"widget-bar-display-desktopportrait\":\"1\",\"widget-thumbnail-enabled\":\"0\",\"widgetthumbnail\":\"default\",\"widget-thumbnail-width\":\"100\",\"widget-thumbnail-height\":\"60\",\"widget-thumbnail-tablet-width\":\"100\",\"widget-thumbnail-tablet-height\":\"60\",\"widget-thumbnail-mobile-width\":\"100\",\"widget-thumbnail-mobile-height\":\"60\",\"widget-thumbnail-position-area\":\"12\",\"widget-thumbnail-position-stack\":\"1\",\"widget-thumbnail-position-offset\":\"0\",\"widget-thumbnail-align-content\":\"start\",\"widget-thumbnail-style-bar\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"242424ff\\\",\\\"padding\\\":\\\"3|*|3|*|3|*|3|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"0\\\",\\\"extra\\\":\\\"\\\"}]}\",\"widget-thumbnail-style-slides\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"00000000\\\",\\\"padding\\\":\\\"0|*|0|*|0|*|0|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|ffffff00\\\",\\\"borderradius\\\":\\\"0\\\",\\\"opacity\\\":\\\"40\\\",\\\"extra\\\":\\\"margin: 3px;\\\\ntransition: all 0.4s;\\\"},{\\\"border\\\":\\\"0|*|solid|*|ffffffcc\\\",\\\"opacity\\\":\\\"100\\\",\\\"extra\\\":\\\"\\\"}]}\",\"widget-thumbnail-title-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"3|*|10|*|3|*|10|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"0\\\",\\\"extra\\\":\\\"bottom: 0;\\\\nleft: 0;\\\"}]}\",\"widget-thumbnail-title\":\"0\",\"widget-thumbnail-title-font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"12||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ab\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.2\\\",\\\"bold\\\":0,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"Raleway,Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-thumbnail-description\":\"0\",\"widget-thumbnail-description-font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"12||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ab\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"bold\\\":0,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"Raleway,Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-thumbnail-caption-placement\":\"overlay\",\"widget-thumbnail-caption-size\":\"100\",\"widget-thumbnail-display-hover\":\"0\",\"widget-thumbnail-display-mobileportrait\":\"0\",\"widget-thumbnail-display-tabletportrait\":\"1\",\"widget-thumbnail-display-desktopportrait\":\"1\",\"widget-shadow-enabled\":\"1\",\"widgetshadow\":\"shadow\",\"widget-shadow-shadow\":\"dark.png\",\"widget-shadow-display-mobileportrait\":\"0\",\"widget-shadow-display-tabletportrait\":\"1\",\"widget-shadow-display-desktopportrait\":\"1\",\"animation\":\"fade\",\"animation-duration\":\"800\",\"background-animation\":\"1012||1013||1025||1402\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"normal\",\"autoplay\":\"1\",\"autoplayDuration\":\"3500\",\"autoplayStopClick\":\"1\",\"autoplayStopMouse\":\"0\",\"autoplayStopMedia\":\"1\",\"autoplayResumeClick\":\"1\",\"autoplayResumeMouse\":\"0\",\"autoplayResumeMedia\":\"1\",\"widget-autoplay-enabled\":\"0\",\"widgetautoplay\":\"image\",\"widget-autoplay-play\":\"small-light.svg\",\"widget-autoplay-play-color\":\"ffffffcc\",\"widget-autoplay-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"10|*|10|*|10|*|10|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"3\\\",\\\"extra\\\":\\\"\\\"},{\\\"backgroundcolor\\\":\\\"000000ab\\\"}]}\",\"widget-autoplay-desktop-image-width\":\"16\",\"widget-autoplay-tablet-image-width\":\"16\",\"widget-autoplay-mobile-image-width\":\"8\",\"widget-autoplay-position-area\":\"4\",\"widget-autoplay-position-stack\":\"1\",\"widget-autoplay-position-offset\":\"15\",\"widget-autoplay-display-hover\":\"0\",\"widget-autoplay-display-mobileportrait\":\"1\",\"widget-autoplay-display-tabletportrait\":\"1\",\"widget-autoplay-display-desktopportrait\":\"1\",\"loading-type\":\"\",\"delay\":\"0\",\"playWhenVisible\":\"1\",\"playWhenVisibleAt\":\"50\",\"optimize-scale\":\"1\",\"optimize-quality\":\"100\",\"optimize-slide-width-normal\":\"1920\",\"optimize-thumbnail-scale\":\"0\",\"optimize-thumbnail-quality\":\"70\",\"optimizeThumbnailWidth\":\"100\",\"optimizeThumbnailHeight\":\"60\",\"backgroundMode\":\"fill\",\"backgroundBlurFit\":\"7\",\"controlsBlockCarouselInteraction\":\"1\",\"clear-both\":\"1\",\"clear-both-after\":\"1\",\"overflow-hidden-page\":\"0\",\"responsiveFocusUser\":\"1\",\"responsiveFocusEdge\":\"auto\",\"is-delayed\":\"0\",\"legacy-font-scale\":\"0\",\"classes\":\"\",\"custom-css-codes\":\"\",\"loading-time\":\"2000\",\"related-posts\":\"\",\"version\":\"3.5.1.23\"}','published','2021-08-25 21:17:07','$upload$/2024/07/DJI_20240703082308_0039_D.png',2),
(3,NULL,'Contact Us','block','{\"aria-label\":\"\",\"alias-id\":\"\",\"alias-smoothscroll\":\"\",\"alias-slideswitch-scroll\":\"1\",\"align\":\"normal\",\"margin\":\"0|*|0|*|0|*|0\",\"width\":\"1200\",\"height\":\"800\",\"responsiveLimitSlideWidth\":\"1\",\"responsiveSlideWidth\":\"0\",\"responsiveSlideWidthMax\":\"3000\",\"responsiveSlideWidthTablet\":\"0\",\"responsiveSlideWidthMaxTablet\":\"3000\",\"responsiveSlideWidthMobile\":\"0\",\"responsiveSlideWidthMaxMobile\":\"480\",\"responsive-breakpoint-tablet-portrait\":\"1199\",\"responsive-breakpoint-tablet-portrait-landscape\":\"1199\",\"responsive-breakpoint-mobile-portrait\":\"700\",\"responsive-breakpoint-mobile-portrait-landscape\":\"900\",\"responsive-breakpoint-tablet-portrait-enabled\":\"1\",\"responsive-breakpoint-mobile-portrait-enabled\":\"1\",\"responsive-breakpoint-global\":\"0\",\"breakpoints-orientation\":\"landscape\",\"responsive-mode\":\"fullwidth\",\"responsiveSliderHeightMin\":\"0\",\"responsiveForceFull\":\"1\",\"responsiveForceFullOverflowX\":\"body\",\"responsiveForceFullHorizontalSelector\":\"body\",\"widget-shadow-enabled\":\"1\",\"widgetshadow\":\"shadow\",\"widget-shadow-shadow\":\"dark.png\",\"widget-shadow-display-mobileportrait\":\"0\",\"widget-shadow-display-tabletportrait\":\"1\",\"widget-shadow-display-desktopportrait\":\"1\",\"loading-type\":\"\",\"delay\":\"0\",\"playWhenVisible\":\"1\",\"playWhenVisibleAt\":\"50\",\"optimize-scale\":\"1\",\"optimize-quality\":\"70\",\"optimize-slide-width-normal\":\"1920\",\"optimize-thumbnail-scale\":\"1\",\"optimize-thumbnail-quality\":\"70\",\"optimizeThumbnailWidth\":\"100\",\"optimizeThumbnailHeight\":\"60\",\"backgroundMode\":\"fill\",\"clear-both\":\"1\",\"clear-both-after\":\"1\",\"overflow-hidden-page\":\"0\",\"responsiveFocusUser\":\"1\",\"responsiveFocusEdge\":\"auto\",\"is-delayed\":\"0\",\"legacy-font-scale\":\"0\",\"classes\":\"\",\"custom-css-codes\":\"\",\"callbacks\":\"\",\"related-posts\":\"\",\"version\":\"3.5.0.10\"}','published','2021-08-30 23:19:51','$upload$/2021/08/Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image.jpg',3),
(4,NULL,'Masterclass','simple','{\"aria-label\":\"\",\"alias-id\":\"\",\"alias-smoothscroll\":\"\",\"alias-slideswitch\":\"\",\"alias-slideswitch-scroll\":\"1\",\"align\":\"normal\",\"margin\":\"0|*|0|*|0|*|0\",\"width\":\"1920\",\"height\":\"1080\",\"responsiveLimitSlideWidth\":\"1\",\"responsiveSlideWidth\":\"0\",\"responsiveSlideWidthMax\":\"3000\",\"responsiveSlideWidthTablet\":\"0\",\"responsiveSlideWidthMaxTablet\":\"3000\",\"responsiveSlideWidthMobile\":\"0\",\"responsiveSlideWidthMaxMobile\":\"480\",\"responsive-breakpoint-tablet-portrait\":\"1199\",\"responsive-breakpoint-tablet-portrait-landscape\":\"1199\",\"responsive-breakpoint-mobile-portrait\":\"700\",\"responsive-breakpoint-mobile-portrait-landscape\":\"900\",\"responsive-breakpoint-tablet-portrait-enabled\":\"1\",\"responsive-breakpoint-mobile-portrait-enabled\":\"1\",\"responsive-breakpoint-global\":\"0\",\"breakpoints-orientation\":\"portrait\",\"responsive-mode\":\"fullwidth\",\"responsiveSliderHeightMin\":\"0\",\"responsiveForceFull\":\"1\",\"responsiveForceFullOverflowX\":\"body\",\"responsiveForceFullHorizontalSelector\":\"body\",\"controlsTouch\":\"horizontal\",\"controlsScroll\":\"0\",\"controlsKeyboard\":\"1\",\"widget-arrow-enabled\":\"1\",\"widgetarrow\":\"imageSmallRectangle\",\"widget-arrow-previous\":\"full.svg\",\"widget-arrow-previous-color\":\"ffffffcc\",\"widget-arrow-previous-hover\":\"0\",\"widget-arrow-previous-hover-color\":\"ffffffcc\",\"widget-arrow-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000FF\\\",\\\"opacity\\\":\\\"50\\\",\\\"padding\\\":\\\"8|*|8|*|8|*|8|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"100\\\",\\\"extra\\\":\\\"\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"1600FFFF\\\",\\\"opacity\\\":\\\"100\\\"}]}\",\"widget-arrow-previous-position-area\":\"6\",\"widget-arrow-previous-position-stack\":\"1\",\"widget-arrow-previous-position-offset\":\"15\",\"widget-arrow-next-position-area\":\"7\",\"widget-arrow-next-position-stack\":\"1\",\"widget-arrow-next-position-offset\":\"15\",\"widget-arrow-previous-alt\":\"previous arrow\",\"widget-arrow-next-alt\":\"next arrow\",\"widget-arrow-base64\":\"1\",\"widget-arrow-desktop-image-width\":\"26\",\"widget-arrow-tablet-image-width\":\"26\",\"widget-arrow-mobile-image-width\":\"16\",\"widget-arrow-display-hover\":\"0\",\"widget-arrow-display-mobileportrait\":\"0\",\"widget-arrow-display-tabletportrait\":\"0\",\"widget-arrow-display-desktopportrait\":\"1\",\"widget-bullet-enabled\":\"1\",\"widgetbullet\":\"transition\",\"widget-bullet-position-area\":\"10\",\"widget-bullet-position-stack\":\"1\",\"widget-bullet-position-offset\":\"10\",\"widget-bullet-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"ffffffff\\\",\\\"opacity\\\":\\\"20\\\",\\\"padding\\\":\\\"5|*|5|*|5|*|5|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"50\\\",\\\"extra\\\":\\\"margin: 4px;\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffff\\\",\\\"opacity\\\":\\\"100\\\"}]}\",\"widget-bullet-bar\":\"\",\"widget-bullet-aria-label\":\"Choose slide to display.\",\"widget-bullet-thumbnail-show-image\":\"0\",\"widget-bullet-thumbnail-width\":\"60\",\"widget-bullet-thumbnail-height\":\"60\",\"widget-bullet-thumbnail-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"00000080\\\",\\\"padding\\\":\\\"3|*|3|*|3|*|3|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"3\\\",\\\"extra\\\":\\\"margin: 5px;\\\"}]}\",\"widget-bullet-thumbnail-side\":\"before\",\"widget-bullet-display-hover\":\"0\",\"widget-bullet-display-mobileportrait\":\"1\",\"widget-bullet-display-tabletportrait\":\"1\",\"widget-bullet-display-desktopportrait\":\"0\",\"widget-bar-enabled\":\"0\",\"widgetbar\":\"horizontal\",\"widget-bar-position-area\":\"10\",\"widget-bar-position-stack\":\"1\",\"widget-bar-position-offset\":\"30\",\"widget-bar-animate\":\"0\",\"widget-bar-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"5|*|20|*|5|*|20|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"40\\\",\\\"extra\\\":\\\"\\\"}]}\",\"widget-bar-show-title\":\"1\",\"widget-bar-font-title\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000c7\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"bold\\\":0,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\",\\\"extra\\\":\\\"vertical-align: middle;\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"Raleway,Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-bar-show-description\":\"1\",\"widget-bar-font-description\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000c7\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"bold\\\":0,\\\"italic\\\":1,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\",\\\"extra\\\":\\\"vertical-align: middle;\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"Raleway,Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-bar-slide-count\":\"0\",\"widget-bar-full-width\":\"0\",\"widget-bar-separator\":\" - \",\"widget-bar-align\":\"center\",\"widget-bar-display-hover\":\"0\",\"widget-bar-display-mobileportrait\":\"1\",\"widget-bar-display-tabletportrait\":\"1\",\"widget-bar-display-desktopportrait\":\"1\",\"widget-thumbnail-enabled\":\"0\",\"widgetthumbnail\":\"default\",\"widget-thumbnail-width\":\"100\",\"widget-thumbnail-height\":\"60\",\"widget-thumbnail-tablet-width\":\"100\",\"widget-thumbnail-tablet-height\":\"60\",\"widget-thumbnail-mobile-width\":\"100\",\"widget-thumbnail-mobile-height\":\"60\",\"widget-thumbnail-position-area\":\"12\",\"widget-thumbnail-position-stack\":\"1\",\"widget-thumbnail-position-offset\":\"0\",\"widget-thumbnail-align-content\":\"start\",\"widget-thumbnail-style-bar\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"242424ff\\\",\\\"padding\\\":\\\"3|*|3|*|3|*|3|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"0\\\",\\\"extra\\\":\\\"\\\"}]}\",\"widget-thumbnail-style-slides\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"00000000\\\",\\\"padding\\\":\\\"0|*|0|*|0|*|0|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|ffffff00\\\",\\\"borderradius\\\":\\\"0\\\",\\\"opacity\\\":\\\"40\\\",\\\"extra\\\":\\\"margin: 3px;\\\\ntransition: all 0.4s;\\\"},{\\\"border\\\":\\\"0|*|solid|*|ffffffcc\\\",\\\"opacity\\\":\\\"100\\\",\\\"extra\\\":\\\"\\\"}]}\",\"widget-thumbnail-title-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"3|*|10|*|3|*|10|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"0\\\",\\\"extra\\\":\\\"bottom: 0;\\\\nleft: 0;\\\"}]}\",\"widget-thumbnail-title\":\"0\",\"widget-thumbnail-title-font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"12||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ab\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.2\\\",\\\"bold\\\":0,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"Raleway,Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-thumbnail-description\":\"0\",\"widget-thumbnail-description-font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"12||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ab\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"bold\\\":0,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"Raleway,Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-thumbnail-caption-placement\":\"overlay\",\"widget-thumbnail-caption-size\":\"100\",\"widget-thumbnail-display-hover\":\"0\",\"widget-thumbnail-display-mobileportrait\":\"0\",\"widget-thumbnail-display-tabletportrait\":\"1\",\"widget-thumbnail-display-desktopportrait\":\"1\",\"widget-shadow-enabled\":\"0\",\"widgetshadow\":\"shadow\",\"widget-shadow-shadow\":\"dark.png\",\"widget-shadow-display-mobileportrait\":\"0\",\"widget-shadow-display-tabletportrait\":\"1\",\"widget-shadow-display-desktopportrait\":\"1\",\"animation\":\"horizontal\",\"animation-duration\":\"800\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"normal\",\"autoplay\":\"0\",\"autoplayDuration\":\"5000\",\"autoplayStopClick\":\"1\",\"autoplayStopMouse\":\"0\",\"autoplayStopMedia\":\"1\",\"autoplayResumeClick\":\"0\",\"autoplayResumeMouse\":\"0\",\"autoplayResumeMedia\":\"1\",\"widget-autoplay-enabled\":\"0\",\"widgetautoplay\":\"image\",\"widget-autoplay-play\":\"small-light.svg\",\"widget-autoplay-play-color\":\"ffffffcc\",\"widget-autoplay-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"10|*|10|*|10|*|10|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"3\\\",\\\"extra\\\":\\\"\\\"},{\\\"backgroundcolor\\\":\\\"000000ab\\\"}]}\",\"widget-autoplay-desktop-image-width\":\"16\",\"widget-autoplay-tablet-image-width\":\"16\",\"widget-autoplay-mobile-image-width\":\"8\",\"widget-autoplay-position-area\":\"4\",\"widget-autoplay-position-stack\":\"1\",\"widget-autoplay-position-offset\":\"15\",\"widget-autoplay-display-hover\":\"0\",\"widget-autoplay-display-mobileportrait\":\"1\",\"widget-autoplay-display-tabletportrait\":\"1\",\"widget-autoplay-display-desktopportrait\":\"1\",\"loading-type\":\"\",\"delay\":\"0\",\"playWhenVisible\":\"1\",\"playWhenVisibleAt\":\"50\",\"optimize-scale\":\"0\",\"optimize-quality\":\"70\",\"optimize-slide-width-normal\":\"1920\",\"optimize-thumbnail-scale\":\"0\",\"optimize-thumbnail-quality\":\"70\",\"optimizeThumbnailWidth\":\"100\",\"optimizeThumbnailHeight\":\"60\",\"backgroundMode\":\"fill\",\"backgroundBlurFit\":\"7\",\"controlsBlockCarouselInteraction\":\"1\",\"clear-both\":\"1\",\"clear-both-after\":\"1\",\"overflow-hidden-page\":\"0\",\"responsiveFocusUser\":\"1\",\"responsiveFocusEdge\":\"auto\",\"is-delayed\":\"0\",\"legacy-font-scale\":\"0\",\"classes\":\"\",\"custom-css-codes\":\"\",\"loading-time\":\"2000\",\"related-posts\":\"\",\"version\":\"3.5.1.29\"}','published','2025-08-22 18:27:32','$upload$/2025/08/IMG_9868.jpg',0);
/*!40000 ALTER TABLE `wpwn_nextend2_smartslider3_sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_nextend2_smartslider3_sliders_xref`
--

DROP TABLE IF EXISTS `wpwn_nextend2_smartslider3_sliders_xref`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_nextend2_smartslider3_sliders_xref` (
  `group_id` int(11) NOT NULL,
  `slider_id` int(11) NOT NULL,
  `ordering` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`group_id`,`slider_id`),
  KEY `ordering` (`ordering`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_nextend2_smartslider3_sliders_xref`
--

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

--
-- Table structure for table `wpwn_nextend2_smartslider3_slides`
--

DROP TABLE IF EXISTS `wpwn_nextend2_smartslider3_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_nextend2_smartslider3_slides` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` text DEFAULT NULL,
  `slider` int(11) NOT NULL,
  `publish_up` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
  `publish_down` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
  `published` tinyint(1) NOT NULL,
  `first` int(11) NOT NULL,
  `slide` longtext DEFAULT NULL,
  `description` text NOT NULL,
  `thumbnail` text DEFAULT NULL,
  `params` text NOT NULL,
  `ordering` int(11) NOT NULL,
  `generator_id` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `published` (`published`),
  KEY `publish_up` (`publish_up`),
  KEY `publish_down` (`publish_down`),
  KEY `generator_id` (`generator_id`),
  KEY `ordering` (`ordering`),
  KEY `slider` (`slider`),
  KEY `thumbnail` (`thumbnail`(100))
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_nextend2_smartslider3_slides`
--

LOCK TABLES `wpwn_nextend2_smartslider3_slides` WRITE;
/*!40000 ALTER TABLE `wpwn_nextend2_smartslider3_slides` DISABLE KEYS */;
INSERT INTO `wpwn_nextend2_smartslider3_slides` VALUES
(1,'Slide Background',1,'1970-01-01 00:00:00','1970-01-01 00:00:00',1,0,'[{\"type\":\"content\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":1120,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitselfalign\":\"center\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-IbNOabpfT5aE\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"tabletportraitgutter\":20,\"mobileportraitpadding\":\"0|*|0|*|0|*|0|*|px\",\"mobileportraitgutter\":20,\"mobileportraitwrapafter\":1,\"mobileportraitmaxwidth\":400,\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-dtwtw9DVCwgQ\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"ffffff00\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"1|*|1|*|1|*|1\",\"borderstyle\":\"none\",\"bordercolor\":\"FFFFFFFF\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"mobileportraitinneralign\":\"left\",\"mobileportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"mobileportraitorder\":2,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-Fjvyu081qJeK\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"colwidth\":\"2/5\",\"href\":\"\",\"href-target\":\"_self\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":60,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Jeans Store Interior\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"36||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.2\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"01. Slide Background\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Lorem ipsum dolor sit amet, consect\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"24||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"weight\\\":300,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Every slide includes a background, which can be a picture or solid color.\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":100,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Latest Project\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffdb\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Step 1\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":90,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"18||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"To change the background click on the label bar and in the layer window select the style tab.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":100,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Latest Project\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffdb\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Step 2\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":90,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"18||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"Choose a source from the background top tab then upload an image or pick a background color.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Read More\",\"namesynced\":1,\"item\":{\"type\":\"button\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"0568f6ff\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"0568f6ff\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"1|*|2|*|1|*|2|*|em\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"5\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffff\\\"}]}\",\"content\":\"Next Slide\",\"nowrap\":\"1\",\"fullwidth\":\"0\",\"href\":\"NextSlide[]\",\"href-target\":\"_self\",\"href-rel\":\"\",\"class\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\"}}}]},{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitorder\":0,\"mobileportraitinneralign\":\"center\",\"mobileportraitorder\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-LnImbm1HgUAv\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"colwidth\":\"3/5\",\"href\":\"\",\"href-target\":\"_self\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitmaxwidth\":300,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"https://smartslider3.com/wp-content/uploads/slider424/background.png\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"alt\":\"\",\"title\":\"\",\"href-class\":\"\"}}}]}]}]}]','','https://smartslider3.com/wp-content/uploads/slider424/slidebackground.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"10|*|60|*|10|*|60\",\"tabletportraitpadding\":\"10|*|50|*|10|*|50\",\"mobileportraitpadding\":\"10|*|10|*|35|*|10\",\"record-slides\":0,\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"https://smartslider3.com/wp-content/uploads/slider424/slide1.png\",\"backgroundFocusX\":50,\"backgroundFocusY\":50,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"default\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.4.0\"}',1,0),
(2,'Build & Design',1,'1970-01-01 00:00:00','1970-01-01 00:00:00',1,0,'[{\"type\":\"content\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":1120,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitselfalign\":\"center\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-TPnUuKlAWVoC\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"tabletportraitgutter\":20,\"mobileportraitinneralign\":\"inherit\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0|*|px\",\"mobileportraitgutter\":20,\"mobileportraitwrapafter\":1,\"mobileportraitmaxwidth\":400,\"mobileportraitselfalign\":\"inherit\",\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-NmnNQvKK01kO\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"ffffff00\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"1|*|1|*|1|*|1\",\"borderstyle\":\"none\",\"bordercolor\":\"FFFFFFFF\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"mobileportraitmaxwidth\":0,\"mobileportraitinneralign\":\"left\",\"mobileportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"mobileportraitorder\":2,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-R5Jkk06Nmzr4\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"colwidth\":\"2/5\",\"href\":\"\",\"href-target\":\"_self\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":60,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Jeans Store Interior\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"36||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.2\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"02. Build & Design\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Lorem ipsum dolor sit amet, consect\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"24||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"weight\\\":300,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Build any layout with layers and customize your designs limitlessly.\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":100,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Latest Project\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffdb\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Step 1\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":90,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"18||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"To add a layer, click the green plus button in the left sidebar and select the type of layer.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":100,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Latest Project\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffdb\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Step 2\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":90,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"18||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"Select any layer and you can edit its content and style properties in the layer window.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Read More\",\"namesynced\":1,\"item\":{\"type\":\"button\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"0568f6ff\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"0568f6ff\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"1|*|2|*|1|*|2|*|em\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"5\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffff\\\"}]}\",\"content\":\"Next Slide\",\"nowrap\":\"1\",\"fullwidth\":\"0\",\"href\":\"NextSlide[]\",\"href-target\":\"_self\",\"href-rel\":\"\",\"class\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\"}}}]},{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitorder\":0,\"mobileportraitinneralign\":\"center\",\"mobileportraitorder\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-iYi6ZKk8yeVp\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"colwidth\":\"3/5\",\"href\":\"\",\"href-target\":\"_self\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitmaxwidth\":300,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"https://smartslider3.com/wp-content/uploads/slider424/buildanddesign.png\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"alt\":\"\",\"title\":\"\",\"href-class\":\"\"}}}]}]}]}]','','https://smartslider3.com/wp-content/uploads/slider424/buildanddesign.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"10|*|60|*|10|*|60\",\"tabletportraitpadding\":\"10|*|50|*|10|*|50\",\"mobileportraitpadding\":\"10|*|10|*|35|*|10\",\"record-slides\":0,\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"https://smartslider3.com/wp-content/uploads/slider424/slide2.png\",\"backgroundFocusX\":50,\"backgroundFocusY\":50,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"default\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.4.0\"}',2,0),
(4,'Slide',2,'1970-01-01 00:00:00','1970-01-01 00:00:00',1,0,'[{\"type\":\"content\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px\",\"desktopportraitselfalign\":\"center\",\"mobileportraitselfalign\":\"center\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-FKD39duXfp5Q\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"layers\":[{\"type\":\"layer\",\"pm\":\"absolute\",\"desktopportraitfontsize\":130,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":0,\"desktopportraittop\":294,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"tabletportraitfontsize\":80,\"tabletportraitalign\":\"center\",\"tabletportraitvalign\":\"middle\",\"tabletportraitleft\":14,\"tabletportraittop\":-244,\"tabletportraitwidth\":661,\"tabletportraitheight\":\"auto\",\"mobileportraitfontsize\":30,\"mobileportraitleft\":19,\"mobileportraittop\":-180,\"id\":\"\",\"uniqueclass\":\"n-uc-12f6bf288cd70\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"adaptivefont\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"A GENERATIONAL FAMILY BUSINESS\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"36||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"georgia\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"2px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"092a5180\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"0|*|0|*|0|*|0|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"0\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|55|*|475|*|290\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":210,\"desktopportraitselfalign\":\"left\",\"tabletportraitmargin\":\"0|*|170|*|685|*|10\",\"mobileportraitmargin\":\"0|*|0|*|275|*|40\",\"mobileportraitmaxwidth\":120,\"id\":\"\",\"uniqueclass\":\"n-uc-dPYUhAqeJ5gL\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"style\":\"\",\"image\":\"$upload$/2025/09/Guido-Construction-Inc-White-LogoRGB.png\",\"alt\":\"\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"href-class\":\"\",\"size\":\"auto|*|auto\",\"cssclass\":\"\",\"image-optimize\":1}}}]}]','','$upload$/2025/03/Douglas-Ave-tear-up-concrete-concrete-cutting-Guido-Construction-Inc-92.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"10|*|10|*|10|*|10\",\"record-slides\":0,\"thumbnailAlt\":\"\",\"thumbnailTitle\":\"\",\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":1025,\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"aria-label\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"092a5180\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"0000000c\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"$upload$/2025/03/Douglas-Ave-tear-up-concrete-concrete-cutting-Guido-Construction-Inc-92.jpg\",\"backgroundFocusX\":70,\"backgroundFocusY\":42,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"default\",\"backgroundBlurFit\":7,\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.5.1.29\"}',5,0),
(6,'topdown-drone-aerial-photography-concrete-pour-Guido_Construction',2,'1970-01-01 00:00:00','1970-01-01 00:00:00',1,0,'[{\"type\":\"content\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"space-between\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitselfalign\":\"center\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-YFdBLXBwkIJg\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"455|*|0|*|175|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"center\",\"mobileportraitfontsize\":60,\"mobileportraitmargin\":\"30|*|0|*|20|*|0\",\"id\":\"\",\"uniqueclass\":\"n-uc-1976716b8f5ee\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"EXPERIENCE - EXCELLENCE - QUALITY\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"36||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"georgia\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"2px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"092a5180\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"20|*|20|*|20|*|20|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"0\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\"}}}]}]','','$upload$/2025/03/Douglas-Ave-ada-sidewalk-Guido-Construction-Inc-23.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"10|*|10|*|10|*|10\",\"tabletportraitpadding\":\"350|*|10|*|0|*|10\",\"mobileportraitpadding\":\"65|*|10|*|10|*|10\",\"record-slides\":0,\"thumbnailAlt\":\"\",\"thumbnailTitle\":\"\",\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":1013,\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"aria-label\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"$upload$/2025/03/Douglas-Ave-ada-sidewalk-Guido-Construction-Inc-23.jpg\",\"backgroundFocusX\":53,\"backgroundFocusY\":48,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"default\",\"backgroundBlurFit\":7,\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.5.1.29\"}',4,0),
(7,'Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image)',3,'1970-01-01 00:00:00','1970-01-01 00:00:00',1,0,'[{\"type\":\"content\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px\",\"desktopportraitselfalign\":\"center\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-XVabXIwQNsJf\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"layers\":[{\"type\":\"layer\",\"pm\":\"absolute\",\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":222,\"desktopportraittop\":265,\"desktopportraitwidth\":1160,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":null,\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"parentid\":null,\"responsiveposition\":1,\"responsivesize\":1,\"adaptivefont\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"$upload$/2021/08/Vertical-Guido-Construction-Logo-e1630085781785.png\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"alt\":\"\",\"title\":\"\",\"href-class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"absolute\",\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":-26,\"desktopportraittop\":10,\"desktopportraitwidth\":1160,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":null,\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"parentid\":null,\"responsiveposition\":1,\"responsivesize\":1,\"adaptivefont\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"CONTACT US TODAY\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"45||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":800,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\"}}}]}]','','$upload$/2021/09/StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction_Concrete.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"10|*|10|*|10|*|10\",\"record-slides\":0,\"thumbnailAlt\":\"\",\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"aria-label\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"$upload$/2021/09/StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction_Concrete.jpg\",\"backgroundFocusX\":50,\"backgroundFocusY\":50,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"default\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.5.0.10\"}',1,0),
(8,'Slide',2,'1970-01-01 00:00:00','1970-01-01 00:00:00',1,0,'[{\"type\":\"content\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px\",\"desktopportraitselfalign\":\"center\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-v8TJkxbfT0xB\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"-10|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":430,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":60,\"id\":\"\",\"uniqueclass\":\"n-uc-qU4oJb5E4A7V\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"C  O  N  C  R  E  T  E\\nM  A  S  T  E  R  S\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"43||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"georgia\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":300,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"092a5180\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"0|*|0|*|0|*|0|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"0\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\"}}}]}]','','$upload$/2024/07/DJI_20240703082308_0039_D.png','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"10|*|10|*|10|*|10\",\"record-slides\":0,\"thumbnailAlt\":\"\",\"thumbnailTitle\":\"\",\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":1025,\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"aria-label\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"092a5180\",\"backgroundGradient\":\"vertical\",\"backgroundColorEnd\":\"0000000c\",\"backgroundColorOverlay\":1,\"backgroundImage\":\"$upload$/2024/07/DJI_20240703082308_0039_D.png\",\"backgroundFocusX\":67,\"backgroundFocusY\":42,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"default\",\"backgroundBlurFit\":7,\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.5.1.29\"}',3,0),
(9,'Roseburg-Oregon-Gudio_Construction-best-concrete-company',2,'1970-01-01 00:00:00','1970-01-01 00:00:00',1,1,'[{\"type\":\"content\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px\",\"desktopportraitselfalign\":\"center\",\"mobileportraitverticalalign\":\"center\",\"mobileportraitinneralign\":\"center\",\"mobileportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-0YZE6KVx3rxC\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|315|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitmargin\":\"0|*|0|*|110|*|0\",\"mobileportraitmaxwidth\":0,\"id\":\"\",\"uniqueclass\":\"n-uc-kBzhYVGAa6YW\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"WELCOME TO\\nGUIDO CONSTRUCTION INC.\\n\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"36||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"georgia\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"5|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":\"\",\"uniqueclass\":\"n-uc-UsrHMI32HyuC\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"COMMERCIAL - INDUSTRIAL - RESIDENTIAL \",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"8c9dadff\\\",\\\"size\\\":\\\"36||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"georgia\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"092a5197\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"0|*|0|*|0|*|0|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"0\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\"}}}]}]','','$upload$/2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"10|*|10|*|10|*|10\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0\",\"record-slides\":0,\"thumbnailAlt\":\"\",\"thumbnailTitle\":\"\",\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":\"1012||1013||1025||1402\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"aria-label\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"$upload$/2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths.jpg\",\"backgroundFocusX\":40,\"backgroundFocusY\":54,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"default\",\"backgroundBlurFit\":7,\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.5.1.29\"}',1,0),
(11,'Slide',2,'1970-01-01 00:00:00','1970-01-01 00:00:00',1,0,'[{\"type\":\"content\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px\",\"desktopportraitselfalign\":\"center\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-STyIwg3K134i\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"layers\":[{\"type\":\"layer\",\"pm\":\"absolute\",\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":17,\"desktopportraittop\":-135,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"tabletportraitfontsize\":70,\"tabletportraitalign\":\"center\",\"tabletportraitvalign\":\"middle\",\"tabletportraitleft\":75,\"tabletportraittop\":-202,\"tabletportraitwidth\":582,\"tabletportraitheight\":116,\"mobileportraitfontsize\":80,\"mobileportraitalign\":\"center\",\"mobileportraitvalign\":\"middle\",\"mobileportraitleft\":0,\"mobileportraittop\":-206,\"mobileportraitwidth\":\"auto\",\"mobileportraitheight\":1770,\"id\":\"\",\"uniqueclass\":\"n-uc-ADXLVadQq7Hn\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"adaptivefont\":1,\"item\":{\"type\":\"heading\",\"values\":{\"heading\":\"OUR STATE OF THE ART CONCRETE TECHNIQUES \\nBRING YOUR PROJECT TO LIFE.\\n\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"27||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"georgia\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"2px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"092a5180\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"0|*|0|*|0|*|0|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"0\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\"}}},{\"type\":\"layer\",\"pm\":\"absolute\",\"desktopportraitfontsize\":150,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":0,\"desktopportraittop\":0,\"desktopportraitwidth\":180.6,\"desktopportraitheight\":\"auto\",\"tabletportraitalign\":\"center\",\"tabletportraitvalign\":\"middle\",\"tabletportraitleft\":64,\"tabletportraittop\":0,\"tabletportraitwidth\":310,\"tabletportraitheight\":\"auto\",\"mobileportraitfontsize\":90,\"mobileportraitalign\":\"center\",\"mobileportraitvalign\":\"middle\",\"mobileportraitleft\":28,\"mobileportraittop\":-206,\"mobileportraitwidth\":566,\"mobileportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"n-uc-F0uNgICPquRC\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Button\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"adaptivefont\":1,\"item\":{\"type\":\"button\",\"values\":{\"content\":\"Contact Us\",\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"15||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"georgia\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":800,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"capitalize\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"316fbcff\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"10|*|30|*|10|*|30|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"1|*|none|*|000000ff\\\",\\\"borderradius\\\":\\\"99\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"141a3cff\\\"}]}\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"href\":\"https://guidoconstructioninc.com/contact-us/\",\"href-target\":\"_blank\",\"href-rel\":\"\"}}}]}]','','$upload$/2021/09/ParkingLot_Concrete_Work_Oregon_Guido_Construction_Douglas_County.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"10|*|10|*|10|*|10\",\"mobileportraitpadding\":\"255|*|10|*|0|*|10\",\"record-slides\":0,\"thumbnailAlt\":\"\",\"thumbnailTitle\":\"\",\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":1025,\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"aria-label\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"092a5180\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"0000000c\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"$upload$/2021/09/ParkingLot_Concrete_Work_Oregon_Guido_Construction_Douglas_County.jpg\",\"backgroundFocusX\":53,\"backgroundFocusY\":55,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"default\",\"backgroundBlurFit\":7,\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.5.1.29\"}',2,0),
(12,'Sport',4,'1970-01-01 00:00:00','1970-01-01 00:00:00',1,0,'[{\"type\":\"content\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":1760,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitselfalign\":\"center\",\"tabletportraitpadding\":\"0|*|0|*|0|*|0\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-vhIfFOyvPU2b\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"$upload$/slider4/sportbg-1.png\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitwrapafter\":1,\"mobileportraitwrapafter\":1,\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-15dce4dc31db4\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":1,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"center\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"0|*|0|*|0|*|0\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-1adaca1afd34f\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"6aabfff1\",\"bgcolorgradient\":\"horizontal\",\"bgcolorgradientend\":\"151a50cc\",\"colwidth\":\"1/1\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":1200,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitwrapafter\":1,\"mobileportraitwrapafter\":1,\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"n1556b60fe0f21\",\"uniqueclass\":\"n-uc-1f79be00ff2e8\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":1,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"180|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"0|*|0|*|60|*|0\",\"mobileportraitpadding\":\"40|*|15|*|60|*|15\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-11109a2967d9c\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitwrapafter\":1,\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"n1fb094eb55dea\",\"uniqueclass\":\"n-uc-12542cecf2bff\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|100|*|0|*|0\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"40|*|40|*|0|*|40\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-1c459f6bfc21a\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/1\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|10|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"n-uc-14e5f8b7135e2\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"CCCCCCff\\\",\\\"size\\\":\\\"16||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"5px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"6\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":1,\"split-text-animation-in\":\"\",\"split-text-delay-in\":0,\"split-text-animation-out\":\"\",\"split-text-delay-out\":0,\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"n-uc-1c59b274b9811\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"52||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lora\\\",\\\"lineheight\\\":\\\"1\\\",\\\"weight\\\":700,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"1\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"ADA Compliant\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":1,\"split-text-animation-in\":\"\",\"split-text-delay-in\":0,\"split-text-animation-out\":\"\",\"split-text-delay-out\":0,\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":80,\"id\":\"\",\"uniqueclass\":\"n-uc-18e6cc6a31a6f\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"24||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":600,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"2\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Certified Vangaurd Installers\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":1,\"split-text-animation-in\":\"\",\"split-text-delay-in\":0,\"split-text-animation-out\":\"\",\"split-text-delay-out\":0,\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|50|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"20|*|0|*|20|*|0\",\"id\":\"\",\"uniqueclass\":\"n-uc-14716bfa60115\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"16||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"We are a step above the rest and will ensure your project gets done right the first time and matches your city guidelines, regulations, and specifications.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"row\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":30,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitinneralign\":\"inherit\",\"mobileportraitgutter\":0,\"mobileportraitwrapafter\":1,\"mobileportraitselfalign\":\"center\",\"mobilelandscapewrapafter\":1,\"opened\":0,\"id\":\"\",\"uniqueclass\":\"n-uc-18ba90ada7676\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":0,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-1f57f7edfbf37\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":\"\",\"uniqueclass\":\"n-uc-1444d5d1a6e81\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Button\",\"namesynced\":1,\"item\":{\"type\":\"button\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"121212ff\\\",\\\"size\\\":\\\"16||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":700,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffff\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"15|*|30|*|15|*|30|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"2|*|solid|*|ffffffff\\\",\\\"borderradius\\\":\\\"100\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffff00\\\"}]}\",\"content\":\"CONTACT US TODAY\",\"nowrap\":\"1\",\"fullwidth\":\"0\",\"href\":\"https://guidoconstructioninc.com/contact-us/\",\"href-target\":\"_blank\",\"href-rel\":\"\",\"class\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\"}}}]},{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-13b55108b06b7\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":\"\",\"uniqueclass\":\"n-uc-17de882fd66c3\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":0,\"desktoplandscape\":1,\"tabletportrait\":0,\"tabletlandscape\":1,\"mobileportrait\":0,\"mobilelandscape\":1,\"name\":\"Button\",\"namesynced\":1,\"item\":{\"type\":\"button\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"16||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":700,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"121212ff\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffff00\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"15|*|30|*|15|*|30|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"2|*|solid|*|ffffffff\\\",\\\"borderradius\\\":\\\"100\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffff\\\"}]}\",\"content\":\"Watch Trailer\",\"nowrap\":\"1\",\"fullwidth\":\"0\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"class\":\"\",\"icon\":\"fa:play\",\"iconsize\":\"100\",\"iconspacing\":\"100\",\"iconplacement\":\"left\"}}}]}]}]}]},{\"type\":\"row\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":20,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"115|*|0|*|-160|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitmargin\":\"50|*|0|*|0|*|0\",\"mobileportraitwrapafter\":1,\"mobileportraitmargin\":\"25|*|0|*|0|*|0\",\"mobilelandscapewrapafter\":1,\"opened\":0,\"id\":\"n196253b3527ff\",\"uniqueclass\":\"n-uc-190eef8bd89e3\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":0,\"tabletlandscape\":1,\"mobileportrait\":0,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"flex-start\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"40|*|40|*|40|*|40\",\"desktopportraitorder\":0,\"mobileportraitpadding\":\"20|*|20|*|20|*|20\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-13fbdbb280c0d\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":100,\"bgimagey\":50,\"bgcolor\":\"151a50cc\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":24,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":\"\",\"uniqueclass\":\"n-uc-1f2f358bb4099\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"style\":\"\",\"image\":\"$upload$/2025/08/Asset-2.png\",\"alt\":\"\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"href-class\":\"\",\"size\":\"48|*|48\",\"cssclass\":\"\",\"image-optimize\":1}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"30|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":80,\"id\":\"\",\"uniqueclass\":\"n-uc-1e318265cad46\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"align\\\":\\\"inherit\\\"},{\\\"color\\\":\\\"1890d7ff\\\"},{\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"From tactile guide strips/ direction indicators for the blind to retrofit speed bumps and detectable warning systems, we make accessibility easy.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}}]},{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"flex-start\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"40|*|40|*|40|*|40\",\"desktopportraitorder\":0,\"mobileportraitpadding\":\"20|*|20|*|20|*|20\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-1dd2e57998a43\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":100,\"bgimagey\":50,\"bgcolor\":\"6aabfff1\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":24,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":\"\",\"uniqueclass\":\"n-uc-16bfd1cab96e4\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"style\":\"\",\"image\":\"$upload$/2025/08/Asset-3.png\",\"alt\":\"\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"href-class\":\"\",\"size\":\"48|*|48\",\"cssclass\":\"\",\"image-optimize\":1}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"30|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":80,\"id\":\"\",\"uniqueclass\":\"n-uc-1894c707f3ec0\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"align\\\":\\\"inherit\\\"},{\\\"color\\\":\\\"1890d7ff\\\"},{\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"Big or small, we will complete your project with ease. From the quoting process to the application phase we take every project from concept to reality.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}}]}]}]},{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"flex-end\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"opened\":0,\"id\":\"\",\"uniqueclass\":\"n-uc-1c289ea4071ef\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"$upload$/2025/08/IMG_9868.jpg\",\"bgimagex\":50,\"bgimagey\":100,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"-70|*|-360|*|-260|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitmargin\":\"-40|*|0|*|0|*|0\",\"tabletportraitheight\":0,\"tabletportraitmaxwidth\":400,\"tabletportraitselfalign\":\"right\",\"mobileportraitmargin\":\"-40|*|0|*|0|*|0\",\"id\":\"\",\"uniqueclass\":\"n-uc-157272e39c523\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"size\":\"auto|*|auto\",\"href\":\"#\",\"style\":\"\",\"image\":\"\",\"alt\":\"\",\"title\":\"\",\"href-target\":\"_self\",\"href-rel\":\"\",\"href-class\":\"\",\"cssclass\":\"\",\"image-optimize\":1}}},{\"type\":\"layer\",\"pm\":\"absolute\",\"desktopportraitfontsize\":100,\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitleft\":277,\"desktopportraittop\":35,\"desktopportraitwidth\":600,\"desktopportraitheight\":\"auto\",\"id\":\"\",\"uniqueclass\":\"n-uc-TN8UjjRwG6DU\",\"generatorvisible\":\"\",\"generatorvisible2\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"parentid\":\"\",\"responsiveposition\":1,\"responsivesize\":1,\"adaptivefont\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"alt\":\"\",\"title\":\"\",\"href-class\":\"\"}}}]}]}]}]}]}]','','$upload$/slider4/masterclassslide_tn_slide01-1.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"100|*|0|*|260|*|0\",\"tabletportraitpadding\":\"0|*|0|*|0|*|0\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0\",\"record-slides\":0,\"thumbnailAlt\":\"\",\"thumbnailTitle\":\"\",\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"aria-label\":\"\",\"background-type\":\"color\",\"backgroundColor\":\"ffffffff\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"\",\"backgroundFocusX\":50,\"backgroundFocusY\":50,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"default\",\"backgroundBlurFit\":7,\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.5.1.29\"}',1,0),
(13,'Music',4,'1970-01-01 00:00:00','1970-01-01 00:00:00',0,0,'[{\"type\":\"content\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":1760,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitselfalign\":\"center\",\"tabletportraitpadding\":\"0|*|0|*|0|*|0\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-XcOmruhuEbEc\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"$upload$/slider4/musicbg-1.png\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitwrapafter\":1,\"mobileportraitwrapafter\":1,\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-RiH65vlW1NWX\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":1,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"center\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"0|*|0|*|0|*|0\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-D0kqTXcENorc\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/1\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":1200,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitwrapafter\":1,\"mobileportraitwrapafter\":1,\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"n1293afcd7745c\",\"uniqueclass\":\"n-uc-NlC5mfnbLcFI\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":1,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"180|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"0|*|0|*|0|*|0\",\"mobileportraitpadding\":\"40|*|15|*|60|*|15\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-AI2qcOsAYfrZ\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitwrapafter\":1,\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-hEr5vf0clxDf\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|100|*|0|*|0\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"40|*|40|*|60|*|40\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-ZZEIa5M11S3B\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/1\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|10|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"n-uc-sMjztEIZ1jTU\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"CCCCCCff\\\",\\\"size\\\":\\\"16||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"5px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"6\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"- Music -\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"n-uc-xLARVcidUiPW\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"52||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lora\\\",\\\"lineheight\\\":\\\"1\\\",\\\"weight\\\":700,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"1\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Lil \\u042f\\u20ac\\u0110#00\\u0110\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":80,\"id\":\"\",\"uniqueclass\":\"n-uc-5Lc6gr9bq1MA\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"24||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":600,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"2\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Beware the Big Bad Wolf.\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|50|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"20|*|0|*|20|*|0\",\"id\":\"\",\"uniqueclass\":\"n-uc-XNLdOAg4dHkf\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"16||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"Tristique neque ut viverra sit ut duis. Luctus vivamus elementum duis aliquet suspendisse leo donec sit. Pharetra aliquam, morbi aliquam velit sed amet condimentum mauris. Rutrum dolor magna.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"row\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":30,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitinneralign\":\"inherit\",\"mobileportraitgutter\":0,\"mobileportraitwrapafter\":1,\"mobileportraitselfalign\":\"center\",\"mobilelandscapewrapafter\":1,\"opened\":0,\"id\":\"\",\"uniqueclass\":\"n-uc-scfhv4Mkx97O\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":0,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-u00Due0dbHLD\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":\"\",\"uniqueclass\":\"n-uc-PktoiYbdfiMb\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Button\",\"namesynced\":1,\"item\":{\"type\":\"button\",\"values\":{\"content\":\"Sign Up For This Masterclass\",\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"121212ff\\\",\\\"size\\\":\\\"16||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":700,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffff\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"15|*|30|*|15|*|30|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"2|*|solid|*|ffffffff\\\",\\\"borderradius\\\":\\\"100\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffff00\\\"}]}\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\",\"class\":\"\"}}}]},{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-paYIA9gLCIvX\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":\"\",\"uniqueclass\":\"n-uc-nLe13H4kvTxA\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":0,\"mobilelandscape\":1,\"name\":\"Button\",\"namesynced\":1,\"item\":{\"type\":\"button\",\"values\":{\"content\":\"Watch Trailer\",\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"16||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":700,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"121212ff\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffff00\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"15|*|30|*|15|*|30|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"2|*|solid|*|ffffffff\\\",\\\"borderradius\\\":\\\"100\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffff\\\"}]}\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"icon\":\"fa:play\",\"iconsize\":\"100\",\"iconspacing\":\"100\",\"iconplacement\":\"left\",\"class\":\"\"}}}]}]}]}]},{\"type\":\"row\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":20,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"115|*|0|*|-160|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitmargin\":\"50|*|0|*|0|*|0\",\"mobileportraitwrapafter\":1,\"mobileportraitmargin\":\"25|*|0|*|0|*|0\",\"mobilelandscapewrapafter\":1,\"opened\":0,\"id\":\"\",\"uniqueclass\":\"n-uc-iq9VLKx65GL4\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":0,\"tabletlandscape\":1,\"mobileportrait\":0,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"flex-start\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"40|*|40|*|40|*|40\",\"desktopportraitorder\":0,\"mobileportraitpadding\":\"20|*|20|*|20|*|20\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-0SmpNt4tRG7g\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"$upload$/slider4/microphone_bg-1.png\",\"bgimagex\":100,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":24,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":\"\",\"uniqueclass\":\"n-uc-6QqQMzMhLqLp\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"style\":\"\",\"image\":\"$upload$/slider4/mic_icon-1.png\",\"alt\":\"\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"href-class\":\"\",\"size\":\"auto|*|auto\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"30|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":80,\"id\":\"\",\"uniqueclass\":\"n-uc-3TQivmtohCRZ\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"align\\\":\\\"inherit\\\"},{\\\"color\\\":\\\"1890d7ff\\\"},{\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"Ultrices sed faucibus molestie in. Eget rhoncus aliquam aliquam venenatis. Nulla at vitae morbi id parturient ac. \",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}}]},{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"flex-start\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"40|*|40|*|40|*|40\",\"desktopportraitorder\":0,\"mobileportraitpadding\":\"20|*|20|*|20|*|20\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-EZtnRdsPvfTH\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"$upload$/slider4/microphone_bg2-1.png\",\"bgimagex\":100,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":24,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":\"\",\"uniqueclass\":\"n-uc-5dyV3zQIITvo\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"style\":\"\",\"image\":\"$upload$/slider4/pad_icon-1.png\",\"alt\":\"\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"href-class\":\"\",\"size\":\"auto|*|auto\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"30|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":80,\"id\":\"\",\"uniqueclass\":\"n-uc-hZblxIpCSSjo\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"align\\\":\\\"inherit\\\"},{\\\"color\\\":\\\"1890d7ff\\\"},{\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"Commodo amet nunc et eu pharetra risus. Eget in ut blandit tincidunt consectetur. Tortor habitant viverra.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}}]}]}]},{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"flex-end\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-lSa8m6TLbGT6\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"$upload$/slider4/musicbg-u-1.png\",\"bgimagex\":50,\"bgimagey\":100,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"-70|*|-360|*|-260|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitmargin\":\"-40|*|0|*|0|*|0\",\"tabletportraitmaxwidth\":400,\"tabletportraitselfalign\":\"right\",\"mobileportraitmargin\":\"-40|*|0|*|0|*|0\",\"id\":\"\",\"uniqueclass\":\"n-uc-ll4NWGsB5hFY\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"style\":\"\",\"image\":\"$upload$/slider4/lilredhood-1.png\",\"alt\":\"\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"href-class\":\"\",\"size\":\"auto|*|auto\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}}]}]}]}]}]}]','','$upload$/slider4/masterclassslide_tn_slide02-1.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"100|*|0|*|260|*|0\",\"tabletportraitpadding\":\"0|*|0|*|0|*|0\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0\",\"record-slides\":0,\"thumbnailAlt\":\"\",\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"aria-label\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"ffffffff\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"\",\"backgroundFocusX\":50,\"backgroundFocusY\":50,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"default\",\"backgroundBlurFit\":7,\"backgroundVideoMp4\":\"\",\"backgroundVideoOpacity\":100,\"backgroundVideoLoop\":1,\"backgroundVideoReset\":1,\"backgroundVideoMode\":\"fill\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.5.1.9\"}',1,0),
(14,'Travel',4,'1970-01-01 00:00:00','1970-01-01 00:00:00',0,0,'[{\"type\":\"content\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":1760,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitselfalign\":\"center\",\"tabletportraitpadding\":\"0|*|0|*|0|*|0\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-3OOUktqIB5ZO\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"$upload$/slider4/travelbg-1.png\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitwrapafter\":1,\"mobileportraitwrapafter\":1,\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-KlgWtvPMPpQ7\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":1,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"center\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"0|*|0|*|0|*|0\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-oHFGpALkipTA\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/1\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":1200,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitwrapafter\":1,\"mobileportraitwrapafter\":1,\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"n1721b3ef2c5ac\",\"uniqueclass\":\"n-uc-iD1eZ48tZKqN\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":1,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"180|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"0|*|0|*|0|*|0\",\"mobileportraitpadding\":\"40|*|15|*|60|*|15\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-q8qzEToceydR\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitwrapafter\":1,\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-vIzjzmfqLgQR\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|100|*|0|*|0\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"40|*|40|*|60|*|40\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-BZdZWKqWJayO\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/1\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|10|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"n-uc-DfoLhdxUiwOp\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"CCCCCCff\\\",\\\"size\\\":\\\"16||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"5px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"6\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"- Travel -\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"n-uc-83f0DQSJmCQk\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"52||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lora\\\",\\\"lineheight\\\":\\\"1\\\",\\\"weight\\\":700,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"1\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Aram Sarkisian\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":80,\"id\":\"\",\"uniqueclass\":\"n-uc-oavTqS5NtEUf\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"24||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":600,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"2\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Bushwalk the whole world.\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|50|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"20|*|0|*|20|*|0\",\"id\":\"\",\"uniqueclass\":\"n-uc-dpnZCTzm84Kx\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"16||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"Dis id nulla ornare nibh dictum. Augue et egestas nunc odio mauris. Lacus posuere lectus eget fringilla quis. Consequat sed amet faucibus a, gravida sollicitudin. Penatibus a nisl mauris felis tellus.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"row\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":30,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitinneralign\":\"inherit\",\"mobileportraitgutter\":0,\"mobileportraitwrapafter\":1,\"mobileportraitselfalign\":\"center\",\"mobilelandscapewrapafter\":1,\"opened\":0,\"id\":\"\",\"uniqueclass\":\"n-uc-JFXTJ3Blh9fo\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":0,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-8TjVSGcyAhCn\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":\"\",\"uniqueclass\":\"n-uc-cOsL3Lhjq0Do\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Button\",\"namesynced\":1,\"item\":{\"type\":\"button\",\"values\":{\"content\":\"Sign Up For This Masterclass\",\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"121212ff\\\",\\\"size\\\":\\\"16||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":700,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffff\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"15|*|30|*|15|*|30|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"2|*|solid|*|ffffffff\\\",\\\"borderradius\\\":\\\"100\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffff00\\\"}]}\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\",\"class\":\"\"}}}]},{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-ub5FYedR7WXx\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":\"\",\"uniqueclass\":\"n-uc-V0RIlQCegy2g\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":0,\"mobilelandscape\":1,\"name\":\"Button\",\"namesynced\":1,\"item\":{\"type\":\"button\",\"values\":{\"content\":\"Watch Trailer\",\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"16||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":700,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"121212ff\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffff00\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"15|*|30|*|15|*|30|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"2|*|solid|*|ffffffff\\\",\\\"borderradius\\\":\\\"100\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffff\\\"}]}\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"icon\":\"fa:play\",\"iconsize\":\"100\",\"iconspacing\":\"100\",\"iconplacement\":\"left\",\"class\":\"\"}}}]}]}]}]},{\"type\":\"row\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":20,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"115|*|0|*|-160|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitmargin\":\"50|*|0|*|0|*|0\",\"mobileportraitwrapafter\":1,\"mobileportraitmargin\":\"25|*|0|*|0|*|0\",\"mobilelandscapewrapafter\":1,\"opened\":0,\"id\":\"\",\"uniqueclass\":\"n-uc-0OY1rgtuZOAo\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":0,\"tabletlandscape\":1,\"mobileportrait\":0,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"flex-start\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"40|*|40|*|40|*|40\",\"desktopportraitorder\":0,\"mobileportraitpadding\":\"20|*|20|*|20|*|20\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-AQvhc5l5WUUR\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"$upload$/slider4/passwortbg-1.png\",\"bgimagex\":100,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":24,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":\"\",\"uniqueclass\":\"n-uc-M0Hp0YktdrPY\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"style\":\"\",\"image\":\"$upload$/slider4/passport_icon-1.png\",\"alt\":\"\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"href-class\":\"\",\"size\":\"auto|*|auto\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"30|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":80,\"id\":\"\",\"uniqueclass\":\"n-uc-OgXkQWx6MCVw\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"align\\\":\\\"inherit\\\"},{\\\"color\\\":\\\"1890d7ff\\\"},{\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"Aliquet mattis urna amet, ante purus aliquet vitae et ullamcorper. Ullamcorper ac pharetra pulvinar.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}}]},{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"flex-start\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"40|*|40|*|40|*|40\",\"desktopportraitorder\":0,\"mobileportraitpadding\":\"20|*|20|*|20|*|20\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-BPoDrR9SjmeE\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"$upload$/slider4/flightbg-1.png\",\"bgimagex\":100,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":24,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":\"\",\"uniqueclass\":\"n-uc-gqj5ZDtK9LBb\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"style\":\"\",\"image\":\"$upload$/slider4/flight_icon-1.png\",\"alt\":\"\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"href-class\":\"\",\"size\":\"auto|*|auto\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"30|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":80,\"id\":\"\",\"uniqueclass\":\"n-uc-nprSPfluyRco\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"align\\\":\\\"inherit\\\"},{\\\"color\\\":\\\"1890d7ff\\\"},{\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"Purus nunc, dolor felis elementum ullamcorper enim, mattis malesuada hac. Mattis at nulla amet nec, mattis. \",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}}]}]}]},{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"flex-end\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"opened\":0,\"id\":\"\",\"uniqueclass\":\"n-uc-GGGFC6DjVhHY\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"$upload$/slider4/travelbg-u-1.png\",\"bgimagex\":50,\"bgimagey\":100,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"-70|*|-360|*|-260|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitmargin\":\"-40|*|0|*|0|*|0\",\"tabletportraitmaxwidth\":400,\"tabletportraitselfalign\":\"right\",\"mobileportraitmargin\":\"-40|*|0|*|0|*|0\",\"id\":\"\",\"uniqueclass\":\"n-uc-ca7pLJXz1IKr\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"style\":\"\",\"image\":\"$upload$/slider4/aramsarkisian-1.png\",\"alt\":\"\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"href-class\":\"\",\"size\":\"auto|*|auto\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}}]}]}]}]}]}]','','$upload$/slider4/masterclassslide_tn_slide03-1.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"100|*|0|*|260|*|0\",\"tabletportraitpadding\":\"0|*|0|*|0|*|0\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0\",\"record-slides\":0,\"thumbnailAlt\":\"\",\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"aria-label\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"ffffffff\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"\",\"backgroundFocusX\":50,\"backgroundFocusY\":50,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"default\",\"backgroundBlurFit\":7,\"backgroundVideoMp4\":\"\",\"backgroundVideoOpacity\":100,\"backgroundVideoLoop\":1,\"backgroundVideoReset\":1,\"backgroundVideoMode\":\"fill\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.5.1.9\"}',1,0),
(15,'Fashion',4,'1970-01-01 00:00:00','1970-01-01 00:00:00',0,0,'[{\"type\":\"content\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":1760,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitselfalign\":\"center\",\"tabletportraitpadding\":\"30|*|15|*|0|*|15\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-c0qpz3ygvMGN\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"$upload$/slider4/fashionbg-1.png\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitwrapafter\":1,\"mobileportraitwrapafter\":1,\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-nSucnU2kIO15\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":1,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"center\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"0|*|0|*|0|*|0\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-VLVzv8JBQQ4R\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/1\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":1200,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitwrapafter\":1,\"mobileportraitwrapafter\":1,\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"n194bba9aa9ed9\",\"uniqueclass\":\"n-uc-1wzsE82xQhJP\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":1,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"180|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"0|*|0|*|0|*|0\",\"mobileportraitpadding\":\"40|*|15|*|60|*|15\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-4xTLv8SK7HlP\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitwrapafter\":1,\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-NTvuB6NYvz95\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|100|*|0|*|0\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"0|*|100|*|60|*|0\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-Dh9G6fGj5rFv\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/1\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|10|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"n-uc-4io5gh0M1gyS\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"CCCCCCff\\\",\\\"size\\\":\\\"16||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"5px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"6\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"- Fashion -\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"n-uc-96cXfFekDPDt\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"52||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lora\\\",\\\"lineheight\\\":\\\"1\\\",\\\"weight\\\":700,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"1\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Marilyn Aminoff\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":80,\"id\":\"\",\"uniqueclass\":\"n-uc-KnW0iaLO1YAN\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Heading\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"24||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":600,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"2\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Ding-dong, Darling. Marvelous!\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|50|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"20|*|0|*|20|*|0\",\"id\":\"\",\"uniqueclass\":\"n-uc-gc3VH7Sz0XNR\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"16||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"In vivamus diam vulputate egestas at sit elit. Nunc at ut egestas facilisi nulla. Risus accumsan, integer duis sed. Interdum diam interdum vehicula auctor semper aliquam sapien. Amet a et.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"row\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":30,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitinneralign\":\"inherit\",\"mobileportraitgutter\":0,\"mobileportraitwrapafter\":1,\"mobileportraitselfalign\":\"center\",\"mobilelandscapewrapafter\":1,\"opened\":0,\"id\":\"\",\"uniqueclass\":\"n-uc-cbc98h802DSg\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":0,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-lHbz4P1FpkFL\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":\"\",\"uniqueclass\":\"n-uc-2cRL8w1kLagc\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Button\",\"namesynced\":1,\"item\":{\"type\":\"button\",\"values\":{\"content\":\"Sign Up For This Masterclass\",\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"121212ff\\\",\\\"size\\\":\\\"16||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":700,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffff\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"15|*|30|*|15|*|30|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"2|*|solid|*|ffffffff\\\",\\\"borderradius\\\":\\\"100\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffff00\\\"}]}\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\",\"class\":\"\"}}}]},{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"center\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-v1tuoPptv2SV\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":\"\",\"uniqueclass\":\"n-uc-LBxtKupPsAa4\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":0,\"mobilelandscape\":1,\"name\":\"Button\",\"namesynced\":1,\"item\":{\"type\":\"button\",\"values\":{\"content\":\"Watch Trailer\",\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"16||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Lato\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":700,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"121212ff\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffff00\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"15|*|30|*|15|*|30|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"2|*|solid|*|ffffffff\\\",\\\"borderradius\\\":\\\"100\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffff\\\"}]}\",\"fullwidth\":\"0\",\"nowrap\":\"1\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"icon\":\"fa:play\",\"iconsize\":\"100\",\"iconspacing\":\"100\",\"iconplacement\":\"left\",\"class\":\"\"}}}]}]}]}]},{\"type\":\"row\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitgutter\":20,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"115|*|0|*|-160|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitmargin\":\"50|*|0|*|0|*|0\",\"mobileportraitwrapafter\":1,\"mobileportraitmargin\":\"25|*|0|*|0|*|0\",\"mobilelandscapewrapafter\":1,\"opened\":0,\"id\":\"\",\"uniqueclass\":\"n-uc-J0aurAIScJQ5\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":0,\"tabletlandscape\":1,\"mobileportrait\":0,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"flex-start\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"40|*|40|*|40|*|40\",\"desktopportraitorder\":0,\"mobileportraitpadding\":\"20|*|20|*|20|*|20\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-uqj0gPIPCIfW\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"$upload$/slider4/clotherbg-1.png\",\"bgimagex\":100,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":24,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":\"\",\"uniqueclass\":\"n-uc-SIgT8bqP1LTD\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"style\":\"\",\"image\":\"$upload$/slider4/cloth_icon-1.png\",\"alt\":\"\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"href-class\":\"\",\"size\":\"auto|*|auto\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"30|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":80,\"id\":\"\",\"uniqueclass\":\"n-uc-tnsP3TxuDs8N\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"align\\\":\\\"inherit\\\"},{\\\"color\\\":\\\"1890d7ff\\\"},{\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"Ut scelerisque ipsum nec non vulputate sapien. Amet at diam elementum tellus consequat. Dui cras faucibus.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}}]},{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"flex-start\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"40|*|40|*|40|*|40\",\"desktopportraitorder\":0,\"mobileportraitpadding\":\"20|*|20|*|20|*|20\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-HItRyWBAui9W\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"$upload$/slider4/sewingbg-1.png\",\"bgimagex\":100,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":24,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"id\":\"\",\"uniqueclass\":\"n-uc-9N05O9zOfwlL\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"style\":\"\",\"image\":\"$upload$/slider4/sewing_icon-1.png\",\"alt\":\"\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"href-class\":\"\",\"size\":\"auto|*|auto\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"30|*|0|*|0|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitfontsize\":80,\"id\":\"\",\"uniqueclass\":\"n-uc-G4oRTvcrSM3Q\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"align\\\":\\\"inherit\\\"},{\\\"color\\\":\\\"1890d7ff\\\"},{\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"Elit nec, sit gravida cras massa sagittis non egestas elit. Aliquet velit erat dictum quisque volutpat. Arcu lacinia.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}}]}]}]},{\"type\":\"col\",\"pm\":\"default\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitverticalalign\":\"flex-end\",\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0\",\"desktopportraitorder\":0,\"opened\":0,\"id\":\"\",\"uniqueclass\":\"n-uc-mjc8lQzodJIA\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"$upload$/slider4/fashionbg-u-1.png\",\"bgimagex\":50,\"bgimagey\":100,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"colwidth\":\"1/2\",\"href\":\"\",\"href-target\":\"_self\",\"aria-label\":\"\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"animv2\":\"\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"-70|*|-360|*|-260|*|0\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitmargin\":\"-40|*|0|*|0|*|0\",\"tabletportraitmaxwidth\":400,\"tabletportraitselfalign\":\"right\",\"mobileportraitmargin\":\"-40|*|0|*|0|*|0\",\"id\":\"\",\"uniqueclass\":\"n-uc-E0Dq73K2ODIy\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"mouseenter\":\"\",\"click\":\"\",\"mouseleave\":\"\",\"play\":\"\",\"pause\":\"\",\"stop\":\"\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"style\":\"\",\"image\":\"$upload$/slider4/marilynaminoff-1.png\",\"alt\":\"\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"href-class\":\"\",\"size\":\"auto|*|auto\",\"cssclass\":\"\",\"image-optimize\":\"1\"}}}]}]}]}]}]}]','','$upload$/slider4/masterclassslide_tn_slide04-1.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"100|*|0|*|260|*|0\",\"tabletportraitpadding\":\"0|*|0|*|0|*|0\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0\",\"record-slides\":0,\"thumbnailAlt\":\"\",\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"aria-label\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"ffffffff\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"\",\"backgroundFocusX\":50,\"backgroundFocusY\":50,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"default\",\"backgroundBlurFit\":7,\"backgroundVideoMp4\":\"\",\"backgroundVideoOpacity\":100,\"backgroundVideoLoop\":1,\"backgroundVideoReset\":1,\"backgroundVideoMode\":\"fill\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.5.1.9\"}',1,0);
/*!40000 ALTER TABLE `wpwn_nextend2_smartslider3_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_options`
--

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

--
-- Dumping data for table `wpwn_options`
--

LOCK TABLES `wpwn_options` WRITE;
/*!40000 ALTER TABLE `wpwn_options` DISABLE KEYS */;
INSERT INTO `wpwn_options` VALUES
(1,'siteurl','https://guidoconstructioninc.com','yes'),
(2,'home','https://guidoconstructioninc.com','yes'),
(3,'blogname','Guido Construction Inc.','yes'),
(4,'blogdescription','Delivering the finest concrete work in the Pacific Northwest','on'),
(5,'users_can_register','0','yes'),
(6,'admin_email','tiana@burtmg.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:245:{s:22:\"shufflehound_header/?$\";s:39:\"index.php?post_type=shufflehound_header\";s:52:\"shufflehound_header/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?post_type=shufflehound_header&feed=$matches[1]\";s:47:\"shufflehound_header/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?post_type=shufflehound_header&feed=$matches[1]\";s:39:\"shufflehound_header/page/([0-9]{1,})/?$\";s:57:\"index.php?post_type=shufflehound_header&paged=$matches[1]\";s:22:\"shufflehound_titleb/?$\";s:39:\"index.php?post_type=shufflehound_titleb\";s:52:\"shufflehound_titleb/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?post_type=shufflehound_titleb&feed=$matches[1]\";s:47:\"shufflehound_titleb/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?post_type=shufflehound_titleb&feed=$matches[1]\";s:39:\"shufflehound_titleb/page/([0-9]{1,})/?$\";s:57:\"index.php?post_type=shufflehound_titleb&paged=$matches[1]\";s:22:\"shufflehound_footer/?$\";s:39:\"index.php?post_type=shufflehound_footer\";s:52:\"shufflehound_footer/feed/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?post_type=shufflehound_footer&feed=$matches[1]\";s:47:\"shufflehound_footer/(feed|rdf|rss|rss2|atom)/?$\";s:56:\"index.php?post_type=shufflehound_footer&feed=$matches[1]\";s:39:\"shufflehound_footer/page/([0-9]{1,})/?$\";s:57:\"index.php?post_type=shufflehound_footer&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:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:46:\"e-floating-buttons/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"e-floating-buttons/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"e-floating-buttons/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"e-floating-buttons/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"e-floating-buttons/([^/]+)/embed/?$\";s:51:\"index.php?e-floating-buttons=$matches[1]&embed=true\";s:39:\"e-floating-buttons/([^/]+)/trackback/?$\";s:45:\"index.php?e-floating-buttons=$matches[1]&tb=1\";s:47:\"e-floating-buttons/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&paged=$matches[2]\";s:54:\"e-floating-buttons/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&cpage=$matches[2]\";s:43:\"e-floating-buttons/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?e-floating-buttons=$matches[1]&page=$matches[2]\";s:35:\"e-floating-buttons/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"e-floating-buttons/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"e-floating-buttons/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"e-floating-buttons/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:45:\"index.php?fw-portfolio=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:39:\"index.php?fw-portfolio=$matches[1]&tb=1\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?fw-portfolio=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?fw-portfolio=$matches[1]&cpage=$matches[2]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?fw-portfolio=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:54:\"portfolio-cat/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?fw-portfolio-category=$matches[1]&feed=$matches[2]\";s:49:\"portfolio-cat/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?fw-portfolio-category=$matches[1]&feed=$matches[2]\";s:30:\"portfolio-cat/([^/]+)/embed/?$\";s:54:\"index.php?fw-portfolio-category=$matches[1]&embed=true\";s:42:\"portfolio-cat/([^/]+)/page/?([0-9]{1,})/?$\";s:61:\"index.php?fw-portfolio-category=$matches[1]&paged=$matches[2]\";s:24:\"portfolio-cat/([^/]+)/?$\";s:43:\"index.php?fw-portfolio-category=$matches[1]\";s:54:\"portfolio-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?fw-portfolio-tag=$matches[1]&feed=$matches[2]\";s:49:\"portfolio-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?fw-portfolio-tag=$matches[1]&feed=$matches[2]\";s:30:\"portfolio-tag/([^/]+)/embed/?$\";s:49:\"index.php?fw-portfolio-tag=$matches[1]&embed=true\";s:42:\"portfolio-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?fw-portfolio-tag=$matches[1]&paged=$matches[2]\";s:24:\"portfolio-tag/([^/]+)/?$\";s:38:\"index.php?fw-portfolio-tag=$matches[1]\";s:47:\"shufflehound_header/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"shufflehound_header/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"shufflehound_header/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"shufflehound_header/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"shufflehound_header/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"shufflehound_header/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"shufflehound_header/([^/]+)/embed/?$\";s:52:\"index.php?shufflehound_header=$matches[1]&embed=true\";s:40:\"shufflehound_header/([^/]+)/trackback/?$\";s:46:\"index.php?shufflehound_header=$matches[1]&tb=1\";s:60:\"shufflehound_header/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?shufflehound_header=$matches[1]&feed=$matches[2]\";s:55:\"shufflehound_header/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?shufflehound_header=$matches[1]&feed=$matches[2]\";s:48:\"shufflehound_header/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?shufflehound_header=$matches[1]&paged=$matches[2]\";s:55:\"shufflehound_header/([^/]+)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?shufflehound_header=$matches[1]&cpage=$matches[2]\";s:44:\"shufflehound_header/([^/]+)(?:/([0-9]+))?/?$\";s:58:\"index.php?shufflehound_header=$matches[1]&page=$matches[2]\";s:36:\"shufflehound_header/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"shufflehound_header/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"shufflehound_header/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"shufflehound_header/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"shufflehound_header/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"shufflehound_header/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:47:\"shufflehound_titleb/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"shufflehound_titleb/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"shufflehound_titleb/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"shufflehound_titleb/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"shufflehound_titleb/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"shufflehound_titleb/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"shufflehound_titleb/([^/]+)/embed/?$\";s:52:\"index.php?shufflehound_titleb=$matches[1]&embed=true\";s:40:\"shufflehound_titleb/([^/]+)/trackback/?$\";s:46:\"index.php?shufflehound_titleb=$matches[1]&tb=1\";s:60:\"shufflehound_titleb/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?shufflehound_titleb=$matches[1]&feed=$matches[2]\";s:55:\"shufflehound_titleb/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?shufflehound_titleb=$matches[1]&feed=$matches[2]\";s:48:\"shufflehound_titleb/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?shufflehound_titleb=$matches[1]&paged=$matches[2]\";s:55:\"shufflehound_titleb/([^/]+)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?shufflehound_titleb=$matches[1]&cpage=$matches[2]\";s:44:\"shufflehound_titleb/([^/]+)(?:/([0-9]+))?/?$\";s:58:\"index.php?shufflehound_titleb=$matches[1]&page=$matches[2]\";s:36:\"shufflehound_titleb/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"shufflehound_titleb/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"shufflehound_titleb/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"shufflehound_titleb/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"shufflehound_titleb/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"shufflehound_titleb/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:47:\"shufflehound_footer/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"shufflehound_footer/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"shufflehound_footer/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"shufflehound_footer/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"shufflehound_footer/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"shufflehound_footer/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"shufflehound_footer/([^/]+)/embed/?$\";s:52:\"index.php?shufflehound_footer=$matches[1]&embed=true\";s:40:\"shufflehound_footer/([^/]+)/trackback/?$\";s:46:\"index.php?shufflehound_footer=$matches[1]&tb=1\";s:60:\"shufflehound_footer/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?shufflehound_footer=$matches[1]&feed=$matches[2]\";s:55:\"shufflehound_footer/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?shufflehound_footer=$matches[1]&feed=$matches[2]\";s:48:\"shufflehound_footer/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?shufflehound_footer=$matches[1]&paged=$matches[2]\";s:55:\"shufflehound_footer/([^/]+)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?shufflehound_footer=$matches[1]&cpage=$matches[2]\";s:44:\"shufflehound_footer/([^/]+)(?:/([0-9]+))?/?$\";s:58:\"index.php?shufflehound_footer=$matches[1]&page=$matches[2]\";s:36:\"shufflehound_footer/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"shufflehound_footer/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"shufflehound_footer/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"shufflehound_footer/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"shufflehound_footer/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"shufflehound_footer/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:47:\"wpb_gutenberg_param/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"wpb_gutenberg_param/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"wpb_gutenberg_param/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"wpb_gutenberg_param/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"wpb_gutenberg_param/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"wpb_gutenberg_param/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"wpb_gutenberg_param/([^/]+)/embed/?$\";s:67:\"index.php?post_type=wpb_gutenberg_param&name=$matches[1]&embed=true\";s:40:\"wpb_gutenberg_param/([^/]+)/trackback/?$\";s:61:\"index.php?post_type=wpb_gutenberg_param&name=$matches[1]&tb=1\";s:48:\"wpb_gutenberg_param/([^/]+)/page/?([0-9]{1,})/?$\";s:74:\"index.php?post_type=wpb_gutenberg_param&name=$matches[1]&paged=$matches[2]\";s:55:\"wpb_gutenberg_param/([^/]+)/comment-page-([0-9]{1,})/?$\";s:74:\"index.php?post_type=wpb_gutenberg_param&name=$matches[1]&cpage=$matches[2]\";s:44:\"wpb_gutenberg_param/([^/]+)(?:/([0-9]+))?/?$\";s:73:\"index.php?post_type=wpb_gutenberg_param&name=$matches[1]&page=$matches[2]\";s:36:\"wpb_gutenberg_param/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"wpb_gutenberg_param/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"wpb_gutenberg_param/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"wpb_gutenberg_param/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"wpb_gutenberg_param/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"wpb_gutenberg_param/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"vc_grid_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"vc_grid_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"vc_grid_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"vc_grid_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"vc_grid_item/([^/]+)/embed/?$\";s:45:\"index.php?vc_grid_item=$matches[1]&embed=true\";s:33:\"vc_grid_item/([^/]+)/trackback/?$\";s:39:\"index.php?vc_grid_item=$matches[1]&tb=1\";s:41:\"vc_grid_item/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&paged=$matches[2]\";s:48:\"vc_grid_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&cpage=$matches[2]\";s:37:\"vc_grid_item/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?vc_grid_item=$matches[1]&page=$matches[2]\";s:29:\"vc_grid_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"vc_grid_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"vc_grid_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"vc_grid_item/[^/]+/([^/]+)/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:12:\"sitemap\\.xml\";s:23:\"index.php?sitemap=index\";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=41&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),
(30,'hack_file','0','yes'),
(31,'blog_charset','UTF-8','yes'),
(32,'moderation_keys','','no'),
(33,'active_plugins','a:15:{i:0;s:35:\"redux-framework/redux-framework.php\";i:1;s:19:\"akismet/akismet.php\";i:2;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:3;s:33:\"classic-editor/classic-editor.php\";i:4;s:13:\"cmb2/init.php\";i:5;s:29:\"custom-fonts/custom-fonts.php\";i:6;s:27:\"js_composer/js_composer.php\";i:7;s:35:\"litespeed-cache/litespeed-cache.php\";i:8;s:23:\"loco-translate/loco.php\";i:9;s:23:\"loginizer/loginizer.php\";i:10;s:47:\"one-click-demo-import/one-click-demo-import.php\";i:11;s:47:\"regenerate-thumbnails/regenerate-thumbnails.php\";i:12;s:33:\"smart-slider-3/smart-slider-3.php\";i:13;s:27:\"ssl-manager/ssl-manager.php\";i:14;s:27:\"updraftplus/updraftplus.php\";}','yes'),
(34,'category_base','','yes'),
(35,'ping_sites','https://rpc.pingomatic.com/','yes'),
(36,'comment_max_links','2','yes'),
(37,'gmt_offset','0','yes'),
(38,'default_email_category','1','yes'),
(39,'recently_edited','a:5:{i:0;s:79:\"/home/burteany/guidoconstructioninc.com/wp-content/themes/jevelin/functions.php\";i:1;s:75:\"/home/burteany/guidoconstructioninc.com/wp-content/themes/jevelin/style.css\";i:2;s:86:\"/home/burteany/guidoconstructioninc.com/wp-content/themes/lambert/homepage-onepage.php\";i:3;s:75:\"/home/burteany/guidoconstructioninc.com/wp-content/themes/lambert/style.css\";i:4;s:76:\"/home/burteany/guidoconstructioninc.com/wp-content/themes/lambert/header.php\";}','no'),
(40,'template','jevelin','yes'),
(41,'stylesheet','jevelin','yes'),
(42,'comment_registration','0','yes'),
(43,'html_type','text/html','yes'),
(44,'use_trackback','0','yes'),
(45,'default_role','subscriber','yes'),
(46,'db_version','60717','yes'),
(47,'uploads_use_yearmonth_folders','1','yes'),
(48,'upload_path','','yes'),
(49,'blog_public','1','yes'),
(50,'default_link_category','2','yes'),
(51,'show_on_front','page','yes'),
(52,'tag_base','','yes'),
(53,'show_avatars','1','yes'),
(54,'avatar_rating','G','yes'),
(55,'upload_url_path','','yes'),
(56,'thumbnail_size_w','150','yes'),
(57,'thumbnail_size_h','150','yes'),
(58,'thumbnail_crop','1','yes'),
(59,'medium_size_w','300','yes'),
(60,'medium_size_h','300','yes'),
(61,'avatar_default','mystery','yes'),
(62,'large_size_w','1024','yes'),
(63,'large_size_h','1024','yes'),
(64,'image_default_link_type','none','yes'),
(65,'image_default_size','','yes'),
(66,'image_default_align','','yes'),
(67,'close_comments_for_old_posts','0','yes'),
(68,'close_comments_days_old','14','yes'),
(69,'thread_comments','1','yes'),
(70,'thread_comments_depth','5','yes'),
(71,'page_comments','0','yes'),
(72,'comments_per_page','50','yes'),
(73,'default_comments_page','newest','yes'),
(74,'comment_order','asc','yes'),
(75,'sticky_posts','a:0:{}','yes'),
(76,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),
(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(79,'uninstall_plugins','a:3:{s:23:\"loginizer/loginizer.php\";s:22:\"loginizer_deactivation\";s:35:\"litespeed-cache/litespeed-cache.php\";s:47:\"LiteSpeed\\Activation::uninstall_litespeed_cache\";s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','no'),
(80,'timezone_string','','yes'),
(81,'page_for_posts','0','yes'),
(82,'page_on_front','41','yes'),
(83,'default_post_format','0','yes'),
(84,'link_manager_enabled','0','yes'),
(85,'finished_splitting_shared_terms','1','yes'),
(86,'site_icon','671','on'),
(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','1774213926','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,'wpwn_user_roles','a:8:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:147:{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:10:\"loco_admin\";b:1;s:11:\"smartslider\";b:1;s:18:\"smartslider_config\";b:1;s:16:\"smartslider_edit\";b:1;s:18:\"smartslider_delete\";b:1;s:38:\"vcv_access_rules__post_types_edit_page\";b:1;s:38:\"vcv_access_rules__post_types_edit_post\";b:1;s:18:\"read_vcv_templates\";b:1;s:18:\"edit_vcv_templates\";b:1;s:20:\"delete_vcv_templates\";b:1;s:19:\"edit_vcv_templatess\";b:1;s:21:\"delete_vcv_templatess\";b:1;s:31:\"delete_published_vcv_templatess\";b:1;s:22:\"publish_vcv_templatess\";b:1;s:29:\"edit_published_vcv_templatess\";b:1;s:27:\"read_private_vcv_templatess\";b:1;s:27:\"edit_private_vcv_templatess\";b:1;s:29:\"delete_private_vcv_templatess\";b:1;s:28:\"delete_others_vcv_templatess\";b:1;s:26:\"edit_others_vcv_templatess\";b:1;s:21:\"create_vcv_templatess\";b:1;s:18:\"read_vcv_tutorials\";b:1;s:18:\"edit_vcv_tutorials\";b:1;s:20:\"delete_vcv_tutorials\";b:1;s:19:\"edit_vcv_tutorialss\";b:1;s:21:\"delete_vcv_tutorialss\";b:1;s:31:\"delete_published_vcv_tutorialss\";b:1;s:29:\"edit_published_vcv_tutorialss\";b:1;s:27:\"read_private_vcv_tutorialss\";b:1;s:27:\"edit_private_vcv_tutorialss\";b:1;s:29:\"delete_private_vcv_tutorialss\";b:1;s:28:\"delete_others_vcv_tutorialss\";b:1;s:26:\"edit_others_vcv_tutorialss\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:62:{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:38:\"vcv_access_rules__post_types_edit_page\";b:1;s:38:\"vcv_access_rules__post_types_edit_post\";b:1;s:18:\"read_vcv_templates\";b:1;s:18:\"edit_vcv_templates\";b:1;s:20:\"delete_vcv_templates\";b:1;s:19:\"edit_vcv_templatess\";b:1;s:21:\"delete_vcv_templatess\";b:1;s:31:\"delete_published_vcv_templatess\";b:1;s:22:\"publish_vcv_templatess\";b:1;s:29:\"edit_published_vcv_templatess\";b:1;s:27:\"read_private_vcv_templatess\";b:1;s:27:\"edit_private_vcv_templatess\";b:1;s:29:\"delete_private_vcv_templatess\";b:1;s:28:\"delete_others_vcv_templatess\";b:1;s:26:\"edit_others_vcv_templatess\";b:1;s:21:\"create_vcv_templatess\";b:1;s:18:\"read_vcv_tutorials\";b:1;s:18:\"edit_vcv_tutorials\";b:1;s:20:\"delete_vcv_tutorials\";b:1;s:19:\"edit_vcv_tutorialss\";b:1;s:21:\"delete_vcv_tutorialss\";b:1;s:31:\"delete_published_vcv_tutorialss\";b:1;s:29:\"edit_published_vcv_tutorialss\";b:1;s:27:\"read_private_vcv_tutorialss\";b:1;s:27:\"edit_private_vcv_tutorialss\";b:1;s:29:\"delete_private_vcv_tutorialss\";b:1;s:28:\"delete_others_vcv_tutorialss\";b:1;s:26:\"edit_others_vcv_tutorialss\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:26:{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:38:\"vcv_access_rules__post_types_edit_post\";b:1;s:18:\"read_vcv_templates\";b:1;s:18:\"edit_vcv_templates\";b:1;s:20:\"delete_vcv_templates\";b:1;s:19:\"edit_vcv_templatess\";b:1;s:21:\"delete_vcv_templatess\";b:1;s:31:\"delete_published_vcv_templatess\";b:1;s:22:\"publish_vcv_templatess\";b:1;s:29:\"edit_published_vcv_templatess\";b:1;s:18:\"read_vcv_tutorials\";b:1;s:18:\"edit_vcv_tutorials\";b:1;s:20:\"delete_vcv_tutorials\";b:1;s:19:\"edit_vcv_tutorialss\";b:1;s:21:\"delete_vcv_tutorialss\";b:1;s:31:\"delete_published_vcv_tutorialss\";b:1;s:29:\"edit_published_vcv_tutorialss\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:12:{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:38:\"vcv_access_rules__post_types_edit_post\";b:1;s:18:\"read_vcv_templates\";b:1;s:19:\"edit_vcv_templatess\";b:1;s:21:\"delete_vcv_templatess\";b:1;s:18:\"read_vcv_tutorials\";b:1;s:19:\"edit_vcv_tutorialss\";b:1;s:21:\"delete_vcv_tutorialss\";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:92:{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:10:\"translator\";a:2:{s:4:\"name\";s:10:\"Translator\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:10:\"loco_admin\";b:1;}}}','yes'),
(100,'fresh_site','0','off'),
(101,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),
(102,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),
(103,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),
(104,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),
(105,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),
(106,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:7:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:12:\"categories-2\";i:3;s:7:\"block-3\";i:4;s:8:\"search-2\";i:5;s:14:\"recent-posts-2\";i:6;s:17:\"recent-comments-2\";}s:12:\"blog-widgets\";a:0:{}s:12:\"page-widgets\";a:0:{}s:14:\"footer_widgets\";a:0:{}s:19:\"woocommerce-widgets\";a:0:{}s:17:\"portfolio-widgets\";a:0:{}s:13:\"other-widgets\";a:0:{}s:18:\"smartslider_area_1\";a:0:{}s:13:\"array_version\";i:3;}','yes'),
(107,'cron','a:21:{i:1770425874;a:1:{s:18:\"litespeed_task_vpi\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:16:\"litespeed_filter\";s:4:\"args\";a:0:{}s:8:\"interval\";i:900;}}}i:1770425896;a:1:{s:19:\"litespeed_task_lqip\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:16:\"litespeed_filter\";s:4:\"args\";a:0:{}s:8:\"interval\";i:900;}}}i:1770425912;a:1:{s:27:\"litespeed_task_imgoptm_pull\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:16:\"litespeed_filter\";s:4:\"args\";a:0:{}s:8:\"interval\";i:900;}}}i:1770426892;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:1770427951;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:1770428670;a:1:{s:27:\"awsm_check_for_expired_jobs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1770431549;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:1770431699;a:1:{s:33:\"updraftplus_clean_temporary_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1770443780;a:4:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}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:1770465489;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1770482944;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:1770483276;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1770486980;a:2:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s: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:1770487021;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s: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:1770496351;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:1770496359;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:1770500272;a:1:{s:22:\"awsm_jobs_email_digest\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1770507149;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:1770508800;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:1770746451;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','on'),
(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:{}','off'),
(119,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1625017449;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\";}}}}','no'),
(120,'https_detection_errors','a:0:{}','off'),
(121,'loginizer_version','2.0.4','yes'),
(122,'loginizer_options','a:0:{}','yes'),
(123,'loginizer_last_reset','1770393452','yes'),
(124,'loginizer_whitelist','a:0:{}','yes'),
(125,'loginizer_blacklist','a:0:{}','yes'),
(126,'loginizer_2fa_whitelist','a:0:{}','yes'),
(127,'loginizer_ins_time','1620410182','yes'),
(128,'loginizer_promo_time','-1635890710','yes'),
(156,'finished_updating_comment_type','1','yes'),
(173,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:16:\"tiana@burtmg.com\";s:7:\"version\";s:5:\"6.9.1\";s:9:\"timestamp\";i:1770184826;}','off'),
(219,'category_children','a:0:{}','yes'),
(329,'theme_mods_g5plus-ruby-build','a:4:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:0:{}s:16:\"header_textcolor\";s:5:\"blank\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1629923365;s:4:\"data\";a:12:{s:19:\"wp_inactive_widgets\";a:0:{}s:4:\"main\";a:0:{}s:12:\"top_bar_left\";a:0:{}s:13:\"top_bar_right\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:8:\"footer_1\";a:0:{}s:8:\"footer_2\";a:0:{}s:8:\"footer_3\";a:0:{}s:8:\"footer_4\";a:0:{}s:15:\"bottom_bar_left\";a:0:{}s:16:\"bottom_bar_right\";a:0:{}s:6:\"canvas\";a:0:{}s:18:\"woocommerce-filter\";a:0:{}}}}','no'),
(331,'current_theme','Jevelin','yes'),
(332,'theme_switched','','yes'),
(334,'litespeed.cloud._summary','{\"curr_request.wp\\/ver\":0,\"last_request.wp\\/ver\":1629922986,\"news.utime\":1767645196,\"curr_request.wp\\/news\":0,\"last_request.wp\\/news\":1629922986,\"curr_request.ver\":0,\"last_request.ver\":1714118955,\"curr_request.news\":0,\"last_request.news\":1767645196,\"ips_ts\":1733240898,\"ips_ts_runner\":1733240898,\"ips\":[\"102.221.36.98\",\"103.106.229.82\",\"103.106.229.94\",\"103.146.63.42\",\"103.152.118.219\",\"103.152.118.72\",\"103.164.203.163\",\"103.188.22.12\",\"103.28.90.190\",\"103.75.117.169\",\"104.225.142.116\",\"104.244.77.37\",\"108.61.158.223\",\"109.248.43.195\",\"135.148.120.32\",\"136.243.106.228\",\"139.84.230.39\",\"141.164.38.65\",\"145.239.252.65\",\"146.88.239.197\",\"147.78.0.165\",\"147.78.3.13\",\"147.78.3.161\",\"149.248.44.108\",\"149.28.136.245\",\"149.28.47.113\",\"149.28.85.239\",\"152.228.171.66\",\"152.53.36.14\",\"155.138.221.81\",\"156.67.218.140\",\"157.90.154.114\",\"158.51.123.249\",\"162.254.117.80\",\"162.254.118.29\",\"163.182.174.161\",\"163.47.21.168\",\"164.52.202.100\",\"167.71.185.204\",\"167.88.61.211\",\"170.249.218.98\",\"178.17.171.177\",\"178.22.124.247\",\"178.22.124.251\",\"178.255.220.12\",\"18.192.146.200\",\"185.116.60.231\",\"185.116.60.232\",\"185.126.237.51\",\"185.212.169.91\",\"185.228.26.40\",\"185.53.57.40\",\"185.53.57.89\",\"188.172.228.182\",\"188.172.229.113\",\"188.64.184.71\",\"190.92.176.5\",\"191.96.101.140\",\"192.248.156.201\",\"192.99.38.117\",\"193.203.191.189\",\"194.163.134.104\",\"194.36.144.221\",\"195.231.17.141\",\"198.38.89.73\",\"199.59.247.242\",\"201.182.97.70\",\"202.182.123.93\",\"202.61.226.253\",\"204.10.163.237\",\"209.124.84.191\",\"209.208.26.218\",\"211.23.143.87\",\"213.159.1.75\",\"213.183.48.170\",\"213.184.85.245\",\"216.238.106.164\",\"216.238.71.13\",\"23.95.73.167\",\"27.131.75.41\",\"31.131.4.244\",\"31.22.115.186\",\"31.40.212.152\",\"34.247.229.180\",\"34.249.110.197\",\"38.101.149.196\",\"38.114.121.40\",\"38.54.30.228\",\"38.54.42.235\",\"38.54.79.187\",\"38.60.253.237\",\"41.185.29.210\",\"41.223.52.170\",\"45.124.65.86\",\"45.132.244.92\",\"45.248.77.61\",\"45.32.123.201\",\"45.32.169.55\",\"45.32.183.112\",\"45.32.210.159\",\"45.32.67.144\",\"45.32.77.223\",\"45.63.67.181\",\"45.76.252.131\",\"45.77.148.74\",\"45.77.233.177\",\"46.250.220.133\",\"49.12.102.29\",\"5.134.119.103\",\"5.134.119.194\",\"5.188.183.13\",\"5.189.146.228\",\"51.81.186.219\",\"51.81.33.156\",\"54.246.224.74\",\"54.36.103.97\",\"61.219.247.87\",\"61.219.247.90\",\"64.176.4.251\",\"64.227.16.93\",\"64.31.63.160\",\"65.108.104.232\",\"65.20.75.178\",\"65.21.81.50\",\"65.21.81.51\",\"66.42.124.101\",\"67.219.99.102\",\"69.50.95.216\",\"70.34.205.229\",\"79.172.239.249\",\"81.31.156.245\",\"81.31.156.246\",\"83.229.71.151\",\"86.105.14.231\",\"86.105.14.232\",\"89.58.38.4\",\"91.148.135.53\",\"91.201.67.57\",\"91.228.7.67\",\"92.118.205.75\",\"93.95.227.66\",\"94.75.232.90\",\"95.179.133.28\",\"95.216.116.209\"],\"curr_request.ver_check\":0,\"last_request.ver_check\":1765964822,\"curr_request.d\\/dash\":0,\"mini_html\":{\"news_dash_guest\":\"\",\"ttl.news_dash_guest\":1758820663,\"promo_mini\":\"\",\"ttl.promo_mini\":1758763063},\"last_request.d\\/dash\":1758676663}','yes'),
(336,'litespeed.conf.hash','fh2mLVLVsY3gRLyq3axDAdJbFt1Q0feP','yes'),
(337,'litespeed.conf.auto_upgrade','','yes'),
(338,'litespeed.conf.api_key','','yes'),
(339,'litespeed.conf.server_ip','','yes'),
(340,'litespeed.conf.news','1','yes'),
(341,'litespeed.conf.cache','1','yes'),
(342,'litespeed.conf.cache-priv','1','yes'),
(343,'litespeed.conf.cache-commenter','1','yes'),
(344,'litespeed.conf.cache-rest','1','yes'),
(345,'litespeed.conf.cache-page_login','1','yes'),
(346,'litespeed.conf.cache-favicon','1','yes'),
(347,'litespeed.conf.cache-resources','1','yes'),
(348,'litespeed.conf.cache-mobile','','yes'),
(349,'litespeed.conf.cache-mobile_rules','[\"Mobile\",\"Android\",\"Silk\\/\",\"Kindle\",\"BlackBerry\",\"Opera Mini\",\"Opera Mobi\"]','yes'),
(350,'litespeed.conf.cache-browser','','yes'),
(351,'litespeed.conf.cache-exc_useragents','[]','yes'),
(352,'litespeed.conf.cache-exc_cookies','[]','yes'),
(353,'litespeed.conf.cache-exc_qs','[]','yes'),
(354,'litespeed.conf.cache-exc_cat','[]','yes'),
(355,'litespeed.conf.cache-exc_tag','[]','yes'),
(356,'litespeed.conf.cache-force_uri','[]','yes'),
(357,'litespeed.conf.cache-force_pub_uri','[]','yes'),
(358,'litespeed.conf.cache-priv_uri','[]','yes'),
(359,'litespeed.conf.cache-exc','[]','yes'),
(360,'litespeed.conf.cache-exc_roles','[]','yes'),
(361,'litespeed.conf.cache-drop_qs','[\"fbclid\",\"gclid\",\"utm*\",\"_ga\"]','yes'),
(362,'litespeed.conf.cache-ttl_pub','604800','yes'),
(363,'litespeed.conf.cache-ttl_priv','1800','yes'),
(364,'litespeed.conf.cache-ttl_frontpage','604800','yes'),
(365,'litespeed.conf.cache-ttl_feed','604800','yes'),
(366,'litespeed.conf.cache-ttl_rest','604800','yes'),
(367,'litespeed.conf.cache-ttl_browser','31557600','yes'),
(368,'litespeed.conf.cache-ttl_status','[\"403 3600\",\"404 3600\",\"500 3600\"]','yes'),
(369,'litespeed.conf.cache-login_cookie','','yes'),
(370,'litespeed.conf.cache-vary_group','{\"administrator\":\"99\",\"author\":\"0\",\"contributor\":\"0\",\"customer\":\"0\",\"editor\":\"0\",\"shop_manager\":\"0\",\"subscriber\":\"0\",\"translator\":\"0\"}','yes'),
(371,'litespeed.conf.purge-upgrade','1','yes'),
(372,'litespeed.conf.purge-stale','','yes'),
(373,'litespeed.conf.purge-post_all','','yes'),
(374,'litespeed.conf.purge-post_f','1','yes'),
(375,'litespeed.conf.purge-post_h','1','yes'),
(376,'litespeed.conf.purge-post_p','1','yes'),
(377,'litespeed.conf.purge-post_pwrp','1','yes'),
(378,'litespeed.conf.purge-post_a','1','yes'),
(379,'litespeed.conf.purge-post_y','','yes'),
(380,'litespeed.conf.purge-post_m','1','yes'),
(381,'litespeed.conf.purge-post_d','','yes'),
(382,'litespeed.conf.purge-post_t','1','yes'),
(383,'litespeed.conf.purge-post_pt','1','yes'),
(384,'litespeed.conf.purge-timed_urls','[]','yes'),
(385,'litespeed.conf.purge-timed_urls_time','','yes'),
(386,'litespeed.conf.purge-hook_all','[\"switch_theme\",\"wp_create_nav_menu\",\"wp_update_nav_menu\",\"wp_delete_nav_menu\",\"create_term\",\"edit_terms\",\"delete_term\",\"add_link\",\"edit_link\",\"delete_link\"]','yes'),
(387,'litespeed.conf.esi','','yes'),
(388,'litespeed.conf.esi-cache_admbar','1','yes'),
(389,'litespeed.conf.esi-cache_commform','1','yes'),
(390,'litespeed.conf.esi-nonce','[\"stats_nonce\",\"subscribe_nonce\"]','yes'),
(391,'litespeed.conf.util-instant_click','','yes'),
(392,'litespeed.conf.util-no_https_vary','','yes'),
(393,'litespeed.conf.debug-disable_all','','yes'),
(394,'litespeed.conf.debug','','yes'),
(395,'litespeed.conf.debug-ips','a:1:{i:0;s:9:\"127.0.0.1\";}','yes'),
(396,'litespeed.conf.debug-level','','yes'),
(397,'litespeed.conf.debug-filesize','3','yes'),
(398,'litespeed.conf.debug-cookie','','yes'),
(399,'litespeed.conf.debug-collaps_qs','','yes'),
(400,'litespeed.conf.debug-inc','a:0:{}','yes'),
(401,'litespeed.conf.debug-exc','a:0:{}','yes'),
(402,'litespeed.conf.db_optm-revisions_max','0','yes'),
(403,'litespeed.conf.db_optm-revisions_age','0','yes'),
(404,'litespeed.conf.optm-css_min','','yes'),
(405,'litespeed.conf.optm-css_comb','','yes'),
(406,'litespeed.conf.optm-css_comb_ext_inl','','yes'),
(407,'litespeed.conf.optm-ucss','','yes'),
(408,'litespeed.conf.optm-ucss_async','','yes'),
(409,'litespeed.conf.optm-css_http2','','yes'),
(410,'litespeed.conf.optm-css_exc','[\".header_cart { display: none; }\"]','yes'),
(411,'litespeed.conf.optm-js_min','','yes'),
(412,'litespeed.conf.optm-js_comb','','yes'),
(413,'litespeed.conf.optm-js_comb_ext_inl','','yes'),
(414,'litespeed.conf.optm-js_http2','','yes'),
(415,'litespeed.conf.optm-js_exc','[\"jquery.js\",\"jquery.min.js\"]','yes'),
(416,'litespeed.conf.optm-ttl','604800','yes'),
(417,'litespeed.conf.optm-html_min','','yes'),
(418,'litespeed.conf.optm-qs_rm','','yes'),
(419,'litespeed.conf.optm-ggfonts_rm','','yes'),
(420,'litespeed.conf.optm-css_async','','yes'),
(421,'litespeed.conf.optm-ccss_gen','1','yes'),
(422,'litespeed.conf.optm-ccss_async','1','yes'),
(423,'litespeed.conf.optm-css_async_inline','1','yes'),
(424,'litespeed.conf.optm-css_font_display','','yes'),
(425,'litespeed.conf.optm-js_defer','0','yes'),
(426,'litespeed.conf.optm-js_inline_defer','','yes'),
(427,'litespeed.conf.optm-emoji_rm','','yes'),
(428,'litespeed.conf.optm-noscript_rm','','yes'),
(429,'litespeed.conf.optm-ggfonts_async','','yes'),
(430,'litespeed.conf.optm-exc_roles','[]','yes'),
(431,'litespeed.conf.optm-ccss_con','','yes'),
(432,'litespeed.conf.optm-js_defer_exc','[\"jquery.js\",\"jquery.min.js\"]','yes'),
(433,'litespeed.conf.optm-dns_prefetch','[]','yes'),
(434,'litespeed.conf.optm-dns_prefetch_ctrl','','yes'),
(435,'litespeed.conf.optm-exc','[]','yes'),
(436,'litespeed.conf.optm-ccss_sep_posttype','[]','yes'),
(437,'litespeed.conf.optm-ccss_sep_uri','[]','yes'),
(438,'litespeed.conf.object','','yes'),
(439,'litespeed.conf.object-kind','','yes'),
(440,'litespeed.conf.object-host','localhost','yes'),
(441,'litespeed.conf.object-port','11211','yes'),
(442,'litespeed.conf.object-life','360','yes'),
(443,'litespeed.conf.object-persistent','1','yes'),
(444,'litespeed.conf.object-admin','1','yes'),
(445,'litespeed.conf.object-transients','1','yes'),
(446,'litespeed.conf.object-db_id','0','yes'),
(447,'litespeed.conf.object-user','','yes'),
(448,'litespeed.conf.object-pswd','','yes'),
(449,'litespeed.conf.object-global_groups','[\"users\",\"userlogins\",\"usermeta\",\"user_meta\",\"site-transient\",\"site-options\",\"site-lookup\",\"blog-lookup\",\"blog-details\",\"rss\",\"global-posts\",\"blog-id-cache\"]','yes'),
(450,'litespeed.conf.object-non_persistent_groups','[\"comment\",\"counts\",\"plugins\",\"wc_session_id\"]','yes'),
(451,'litespeed.conf.discuss-avatar_cache','','yes'),
(452,'litespeed.conf.discuss-avatar_cron','','yes'),
(453,'litespeed.conf.discuss-avatar_cache_ttl','604800','yes'),
(454,'litespeed.conf.optm-localize','','yes'),
(455,'litespeed.conf.optm-localize_domains','a:7:{i:0;s:23:\"### Popular scripts ###\";i:1;s:39:\"https://platform.twitter.com/widgets.js\";i:2;s:39:\"https://www.google.com/recaptcha/api.js\";i:3;s:45:\"https://www.google-analytics.com/analytics.js\";i:4;s:39:\"https://www.googletagmanager.com/gtm.js\";i:5;s:47:\"https://www.googletagservices.com/tag/js/gpt.js\";i:6;s:46:\"https://connect.facebook.net/en_US/fbevents.js\";}','yes'),
(456,'litespeed.conf.media-lazy','','yes'),
(457,'litespeed.conf.media-lazy_placeholder','','yes'),
(458,'litespeed.conf.media-placeholder_resp','','yes'),
(459,'litespeed.conf.media-placeholder_resp_color','#cfd4db','yes'),
(460,'litespeed.conf.media-placeholder_resp_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"{width}\" height=\"{height}\" viewBox=\"0 0 {width} {height}\"><rect width=\"100%\" height=\"100%\" fill=\"{color}\"/></svg>','yes'),
(461,'litespeed.conf.media-lqip','','yes'),
(462,'litespeed.conf.media-lqip_qual','4','yes'),
(463,'litespeed.conf.media-lqip_min_w','150','yes'),
(464,'litespeed.conf.media-lqip_min_h','150','yes'),
(465,'litespeed.conf.media-placeholder_resp_async','1','yes'),
(466,'litespeed.conf.media-iframe_lazy','','yes'),
(467,'litespeed.conf.media-lazyjs_inline','','yes'),
(468,'litespeed.conf.media-lazy_exc','[]','yes'),
(469,'litespeed.conf.media-lazy_cls_exc','[\"wmu-preview-img\"]','yes'),
(470,'litespeed.conf.media-lazy_parent_cls_exc','[]','yes'),
(471,'litespeed.conf.media-iframe_lazy_cls_exc','[]','yes'),
(472,'litespeed.conf.media-iframe_lazy_parent_cls_exc','[]','yes'),
(473,'litespeed.conf.media-lazy_uri_exc','[]','yes'),
(474,'litespeed.conf.media-lqip_exc','[]','yes'),
(475,'litespeed.conf.img_optm-auto','','yes'),
(476,'litespeed.conf.img_optm-cron','1','yes'),
(477,'litespeed.conf.img_optm-ori','1','yes'),
(478,'litespeed.conf.img_optm-rm_bkup','','yes'),
(479,'litespeed.conf.img_optm-webp','','yes'),
(480,'litespeed.conf.img_optm-lossless','','yes'),
(481,'litespeed.conf.img_optm-exif','','yes'),
(482,'litespeed.conf.img_optm-webp_replace','','yes'),
(483,'litespeed.conf.img_optm-webp_attr','a:7:{i:0;s:7:\"img.src\";i:1;s:14:\"div.data-thumb\";i:2;s:12:\"img.data-src\";i:3;s:20:\"div.data-large_image\";i:4;s:19:\"img.retina_logo_url\";i:5;s:23:\"div.data-parallax-image\";i:6;s:12:\"video.poster\";}','yes'),
(484,'litespeed.conf.img_optm-webp_replace_srcset','','yes'),
(485,'litespeed.conf.img_optm-jpg_quality','82','yes'),
(486,'litespeed.conf.crawler','','yes'),
(487,'litespeed.conf.crawler-usleep','500','yes'),
(488,'litespeed.conf.crawler-run_duration','400','yes'),
(489,'litespeed.conf.crawler-run_interval','600','yes'),
(490,'litespeed.conf.crawler-crawl_interval','302400','yes'),
(491,'litespeed.conf.crawler-threads','3','yes'),
(492,'litespeed.conf.crawler-timeout','30','yes'),
(493,'litespeed.conf.crawler-load_limit','1','yes'),
(494,'litespeed.conf.crawler-sitemap','','yes'),
(495,'litespeed.conf.crawler-drop_domain','1','yes'),
(496,'litespeed.conf.crawler-map_timeout','120','yes'),
(497,'litespeed.conf.crawler-roles','a:0:{}','yes'),
(498,'litespeed.conf.crawler-cookies','a:0:{}','yes'),
(499,'litespeed.conf.misc-htaccess_front','','yes'),
(500,'litespeed.conf.misc-htaccess_back','','yes'),
(501,'litespeed.conf.misc-heartbeat_front','','yes'),
(502,'litespeed.conf.misc-heartbeat_front_ttl','60','yes'),
(503,'litespeed.conf.misc-heartbeat_back','','yes'),
(504,'litespeed.conf.misc-heartbeat_back_ttl','60','yes'),
(505,'litespeed.conf.misc-heartbeat_editor','','yes'),
(506,'litespeed.conf.misc-heartbeat_editor_ttl','15','yes'),
(507,'litespeed.conf.cdn','','yes'),
(508,'litespeed.conf.cdn-ori','a:0:{}','yes'),
(509,'litespeed.conf.cdn-ori_dir','a:2:{i:0;s:10:\"wp-content\";i:1;s:11:\"wp-includes\";}','yes'),
(510,'litespeed.conf.cdn-exc','a:0:{}','yes'),
(511,'litespeed.conf.cdn-quic','','yes'),
(512,'litespeed.conf.cdn-cloudflare','','yes'),
(513,'litespeed.conf.cdn-cloudflare_email','','yes'),
(514,'litespeed.conf.cdn-cloudflare_key','','yes'),
(515,'litespeed.conf.cdn-cloudflare_name','','yes'),
(516,'litespeed.conf.cdn-cloudflare_zone','','yes'),
(517,'litespeed.conf.cdn-mapping','a:1:{i:0;a:5:{s:3:\"url\";b:0;s:7:\"inc_img\";s:1:\"1\";s:7:\"inc_css\";s:1:\"1\";s:6:\"inc_js\";s:1:\"1\";s:8:\"filetype\";a:17:{i:0;s:4:\".aac\";i:1;s:4:\".css\";i:2;s:4:\".eot\";i:3;s:4:\".gif\";i:4;s:5:\".jpeg\";i:5;s:3:\".js\";i:6;s:4:\".jpg\";i:7;s:5:\".less\";i:8;s:4:\".mp3\";i:9;s:4:\".mp4\";i:10;s:4:\".ogg\";i:11;s:4:\".otf\";i:12;s:4:\".pdf\";i:13;s:4:\".png\";i:14;s:4:\".svg\";i:15;s:4:\".ttf\";i:16;s:5:\".woff\";}}}','yes'),
(518,'litespeed.conf.cdn-attr','a:5:{i:0;s:4:\".src\";i:1;s:9:\".data-src\";i:2;s:5:\".href\";i:3;s:7:\".poster\";i:4;s:13:\"source.srcset\";}','yes'),
(609,'widget_block','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:1:{s:7:\"content\";s:52:\"<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\";}}','yes'),
(712,'litespeed.gui._summary','a:2:{s:11:\"new_version\";i:1629309071;s:5:\"score\";i:1629654671;}','yes'),
(713,'wp_force_deactivated_plugins','a:0:{}','off'),
(796,'litespeed.admin_display._summary','{\"new_version\":1629309071,\"score\":1629654671,\"new_version.last_check\":1634942281,\"new_version.v\":\"4.4.3\"}','yes'),
(839,'litespeed.optimize.timestamp_purge_css','1767646898','yes'),
(849,'recently_activated','a:3:{s:23:\"elementor/elementor.php\";i:1767646858;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1767646844;s:31:\"envato-market/envato-market.php\";i:1767645895;}','off'),
(857,'litespeed.conf.guest','','yes'),
(858,'litespeed.conf.guest_optm','1','yes'),
(859,'litespeed.conf.guest_uas','[\"Lighthouse\",\"GTmetrix\",\"Google\",\"Pingdom\",\"bot\",\"PTST\",\"HeadlessChrome\"]','yes'),
(860,'litespeed.conf.guest_ips','[\"208.70.247.157\",\"172.255.48.130\",\"172.255.48.131\",\"172.255.48.132\",\"172.255.48.133\",\"172.255.48.134\",\"172.255.48.135\",\"172.255.48.136\",\"172.255.48.137\",\"172.255.48.138\",\"172.255.48.139\",\"172.255.48.140\",\"172.255.48.141\",\"172.255.48.142\",\"172.255.48.143\",\"172.255.48.144\",\"172.255.48.145\",\"172.255.48.146\",\"172.255.48.147\",\"52.229.122.240\",\"104.214.72.101\",\"13.66.7.11\",\"13.85.24.83\",\"13.85.24.90\",\"13.85.82.26\",\"40.74.242.253\",\"40.74.243.13\",\"40.74.243.176\",\"104.214.48.247\",\"157.55.189.189\",\"104.214.110.135\",\"70.37.83.240\",\"65.52.36.250\",\"13.78.216.56\",\"52.162.212.163\",\"23.96.34.105\",\"65.52.113.236\",\"172.255.61.34\",\"172.255.61.35\",\"172.255.61.36\",\"172.255.61.37\",\"172.255.61.38\",\"172.255.61.39\",\"172.255.61.40\",\"104.41.2.19\",\"191.235.98.164\",\"191.235.99.221\",\"191.232.194.51\",\"52.237.235.185\",\"52.237.250.73\",\"52.237.236.145\",\"104.211.143.8\",\"104.211.165.53\",\"52.172.14.87\",\"40.83.89.214\",\"52.175.57.81\",\"20.188.63.151\",\"20.52.36.49\",\"52.246.165.153\",\"51.144.102.233\",\"13.76.97.224\",\"102.133.169.66\",\"52.231.199.170\",\"13.53.162.7\",\"40.123.218.94\"]','yes'),
(861,'litespeed.conf.optm-ucss_whitelist','[]','yes'),
(862,'litespeed.conf.optm-html_lazy','[]','yes'),
(863,'litespeed.conf.optm-ccss_per_url','1','yes'),
(864,'litespeed.conf.optm-gm_js_exc','[]','yes'),
(865,'litespeed.conf.optm-guest_only','1','yes'),
(866,'litespeed.conf.media-add_missing_sizes','','yes'),
(882,'theme_mods_lambert','a:6:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:16;s:7:\"onepage\";i:16;}s:18:\"custom_css_post_id\";i:475;s:15:\"lambert_options\";a:28:{s:17:\"blog_header_image\";a:5:{s:3:\"url\";s:129:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/topdown-drone-aerial-photography-concrete-pour-Guido_Construction.jpg\";s:2:\"id\";s:2:\"32\";s:6:\"height\";s:3:\"708\";s:5:\"width\";s:4:\"1259\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"blog_layout\";s:9:\"fullwidth\";s:11:\"blog_author\";s:1:\"0\";s:9:\"blog_date\";s:1:\"0\";s:9:\"blog_cats\";s:1:\"0\";s:13:\"blog_comments\";s:1:\"0\";s:9:\"blog_tags\";s:1:\"0\";s:14:\"blog_home_text\";s:18:\"Guido Construction\";s:20:\"blog_home_text_intro\";s:41:\"<h3>The concrete masters of the PNW </h3>\";s:23:\"show_blog_header_single\";s:1:\"0\";s:20:\"blog_comments_single\";s:1:\"0\";s:6:\"404_bg\";a:5:{s:3:\"url\";s:129:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/topdown-drone-aerial-photography-concrete-pour-Guido_Construction.jpg\";s:2:\"id\";s:2:\"32\";s:6:\"height\";s:3:\"708\";s:5:\"width\";s:4:\"1259\";s:9:\"thumbnail\";s:0:\"\";}s:12:\"color-preset\";s:4:\"blue\";s:16:\"theme-skin-color\";s:7:\"#1a64a5\";s:20:\"footer-copy-bg-color\";s:7:\"#262526\";s:6:\"shopbg\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:16:\"shop_breadcrumbs\";s:1:\"0\";s:20:\"blog_featured_single\";s:1:\"0\";s:18:\"blog_author_single\";s:1:\"0\";s:16:\"blog_date_single\";s:1:\"0\";s:16:\"blog_cats_single\";s:1:\"0\";s:16:\"blog_tags_single\";s:1:\"0\";s:15:\"override-preset\";s:1:\"1\";s:24:\"blog_author_single_block\";s:1:\"0\";s:22:\"blog_single_navigation\";s:1:\"0\";s:4:\"logo\";a:5:{s:3:\"url\";s:98:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Horizontal-Guido-Construction-Logo.png\";s:2:\"id\";s:3:\"105\";s:6:\"height\";s:3:\"207\";s:5:\"width\";s:3:\"517\";s:9:\"thumbnail\";s:0:\"\";}s:5:\"logo2\";a:5:{s:3:\"url\";s:106:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\";s:2:\"id\";s:3:\"112\";s:6:\"height\";s:3:\"224\";s:5:\"width\";s:3:\"161\";s:9:\"thumbnail\";s:0:\"\";}s:16:\"logo_size_height\";s:2:\"62\";}s:11:\"custom_logo\";i:667;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1758732433;s:4:\"data\";a:10:{s:19:\"wp_inactive_widgets\";a:7:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:12:\"categories-2\";i:3;s:7:\"block-3\";i:4;s:8:\"search-2\";i:5;s:14:\"recent-posts-2\";i:6;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:12:\"sidebar-shop\";a:0:{}s:17:\"top_social_widget\";a:0:{}s:21:\"footer_widgets_widget\";a:0:{}s:22:\"footer_contacts_widget\";a:0:{}s:23:\"footer_copyright_widget\";a:0:{}s:16:\"opentable_widget\";a:0:{}s:18:\"smartslider_area_1\";a:0:{}}}}','off'),
(890,'wpcf7','a:2:{s:7:\"version\";s:5:\"6.1.4\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1719449690;s:7:\"version\";s:5:\"5.9.6\";s:11:\"count_valid\";i:2;s:13:\"count_invalid\";i:0;}}','yes'),
(891,'envato_market','a:2:{s:16:\"is_plugin_active\";s:0:\"\";s:17:\"installed_version\";s:5:\"2.0.6\";}','yes'),
(892,'lambert-addons-options','a:1:{s:16:\"res_confirm_page\";i:674;}','yes'),
(893,'lambert-addons-version','2.5.2','yes'),
(894,'action_scheduler_hybrid_store_demarkation','24','yes'),
(895,'schema-ActionScheduler_StoreSchema','4.0.1629923548','yes'),
(896,'schema-ActionScheduler_LoggerSchema','2.0.1629923548','yes'),
(899,'woocommerce_schema_version','430','yes'),
(900,'woocommerce_store_address','','yes'),
(901,'woocommerce_store_address_2','','yes'),
(902,'woocommerce_store_city','','yes'),
(903,'woocommerce_default_country','US:CA','yes'),
(904,'woocommerce_store_postcode','','yes'),
(905,'woocommerce_allowed_countries','all','yes'),
(906,'woocommerce_all_except_countries','','yes'),
(907,'woocommerce_specific_allowed_countries','','yes'),
(908,'woocommerce_ship_to_countries','','yes'),
(909,'woocommerce_specific_ship_to_countries','','yes'),
(910,'woocommerce_default_customer_address','base','yes'),
(911,'woocommerce_calc_taxes','no','yes'),
(912,'woocommerce_enable_coupons','yes','yes'),
(913,'woocommerce_calc_discounts_sequentially','no','no'),
(914,'woocommerce_currency','USD','yes'),
(915,'woocommerce_currency_pos','left','yes'),
(916,'woocommerce_price_thousand_sep',',','yes'),
(917,'woocommerce_price_decimal_sep','.','yes'),
(918,'woocommerce_price_num_decimals','2','yes'),
(919,'woocommerce_shop_page_id','25','yes'),
(920,'woocommerce_cart_redirect_after_add','no','yes'),
(921,'woocommerce_enable_ajax_add_to_cart','yes','yes'),
(922,'woocommerce_placeholder_image','24','yes'),
(923,'woocommerce_weight_unit','kg','yes'),
(924,'woocommerce_dimension_unit','cm','yes'),
(925,'woocommerce_enable_reviews','yes','yes'),
(926,'woocommerce_review_rating_verification_label','yes','no'),
(927,'woocommerce_review_rating_verification_required','no','no'),
(928,'woocommerce_enable_review_rating','yes','yes'),
(929,'woocommerce_review_rating_required','yes','no'),
(930,'woocommerce_manage_stock','yes','yes'),
(931,'woocommerce_hold_stock_minutes','60','no'),
(932,'woocommerce_notify_low_stock','yes','no'),
(933,'woocommerce_notify_no_stock','yes','no'),
(934,'woocommerce_stock_email_recipient','tiana@burtmg.com','no'),
(935,'woocommerce_notify_low_stock_amount','2','no'),
(936,'woocommerce_notify_no_stock_amount','0','yes'),
(937,'woocommerce_hide_out_of_stock_items','no','yes'),
(938,'woocommerce_stock_format','','yes'),
(939,'woocommerce_file_download_method','force','no'),
(940,'woocommerce_downloads_redirect_fallback_allowed','no','no'),
(941,'woocommerce_downloads_require_login','no','no'),
(942,'woocommerce_downloads_grant_access_after_payment','yes','no'),
(943,'woocommerce_downloads_add_hash_to_filename','yes','yes'),
(944,'woocommerce_prices_include_tax','no','yes'),
(945,'woocommerce_tax_based_on','shipping','yes'),
(946,'woocommerce_shipping_tax_class','inherit','yes'),
(947,'woocommerce_tax_round_at_subtotal','no','yes'),
(948,'woocommerce_tax_classes','','yes'),
(949,'woocommerce_tax_display_shop','excl','yes'),
(950,'woocommerce_tax_display_cart','excl','yes'),
(951,'woocommerce_price_display_suffix','','yes'),
(952,'woocommerce_tax_total_display','itemized','no'),
(953,'woocommerce_enable_shipping_calc','yes','no'),
(954,'woocommerce_shipping_cost_requires_address','no','yes'),
(955,'woocommerce_ship_to_destination','billing','no'),
(956,'woocommerce_shipping_debug_mode','no','yes'),
(957,'woocommerce_enable_guest_checkout','yes','no'),
(958,'woocommerce_enable_checkout_login_reminder','no','no'),
(959,'woocommerce_enable_signup_and_login_from_checkout','no','no'),
(960,'woocommerce_enable_myaccount_registration','no','no'),
(961,'woocommerce_registration_generate_username','yes','no'),
(962,'woocommerce_registration_generate_password','yes','no'),
(963,'woocommerce_erasure_request_removes_order_data','no','no'),
(964,'woocommerce_erasure_request_removes_download_data','no','no'),
(965,'woocommerce_allow_bulk_remove_personal_data','no','no'),
(966,'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'),
(967,'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'),
(968,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),
(969,'woocommerce_trash_pending_orders','','no'),
(970,'woocommerce_trash_failed_orders','','no'),
(971,'woocommerce_trash_cancelled_orders','','no'),
(972,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),
(973,'woocommerce_email_from_name','Guido Construction Inc. Dev Site','no'),
(974,'woocommerce_email_from_address','tiana@burtmg.com','no'),
(975,'woocommerce_email_header_image','','no'),
(976,'woocommerce_email_footer_text','{site_title} &mdash; Built with {WooCommerce}','no'),
(977,'woocommerce_email_base_color','#96588a','no'),
(978,'woocommerce_email_background_color','#f7f7f7','no'),
(979,'woocommerce_email_body_background_color','#ffffff','no'),
(980,'woocommerce_email_text_color','#3c3c3c','no'),
(981,'woocommerce_merchant_email_notifications','no','no'),
(982,'woocommerce_cart_page_id','26','no'),
(983,'woocommerce_checkout_page_id','27','no'),
(984,'woocommerce_myaccount_page_id','28','no'),
(985,'woocommerce_terms_page_id','','no'),
(986,'woocommerce_force_ssl_checkout','no','yes'),
(987,'woocommerce_unforce_ssl_checkout','no','yes'),
(988,'woocommerce_checkout_pay_endpoint','order-pay','yes'),
(989,'woocommerce_checkout_order_received_endpoint','order-received','yes'),
(990,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),
(991,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),
(992,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),
(993,'woocommerce_myaccount_orders_endpoint','orders','yes'),
(994,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),
(995,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),
(996,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),
(997,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),
(998,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),
(999,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),
(1000,'woocommerce_logout_endpoint','customer-logout','yes'),
(1001,'woocommerce_api_enabled','no','yes'),
(1002,'woocommerce_allow_tracking','no','no'),
(1003,'woocommerce_show_marketplace_suggestions','yes','no'),
(1004,'woocommerce_single_image_width','600','yes'),
(1005,'woocommerce_thumbnail_image_width','300','yes'),
(1006,'woocommerce_checkout_highlight_required_fields','yes','yes'),
(1007,'woocommerce_demo_store','no','no'),
(1008,'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'),
(1009,'current_theme_supports_woocommerce','yes','yes'),
(1010,'woocommerce_queue_flush_rewrite_rules','no','yes'),
(1013,'product_cat_children','a:0:{}','yes'),
(1014,'default_product_cat','15','yes'),
(1016,'woocommerce_refund_returns_page_id','29','yes'),
(1019,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:16:\"tiana@burtmg.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:16:\"tiana@burtmg.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:0:\"\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:2:\"no\";}','yes'),
(1020,'woocommerce_version','5.6.0','yes'),
(1021,'woocommerce_db_version','5.6.0','yes'),
(1022,'woocommerce_inbox_variant_assignment','4','yes'),
(1029,'action_scheduler_lock_async-request-runner','1630455509','yes'),
(1030,'woocommerce_admin_notices','a:0:{}','yes'),
(1031,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"0tdcI3W1RAu4qQVVQzC1h1ReSHrt9Nsy\";}','yes'),
(1033,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1034,'widget_cth_tweets','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1035,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1036,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1037,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1038,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1039,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1040,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1041,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1042,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1043,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1044,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1045,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1046,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1049,'woocommerce_admin_version','2.5.1','yes'),
(1050,'woocommerce_admin_install_timestamp','1629923551','yes'),
(1051,'wc_remote_inbox_notifications_wca_updated','','no'),
(1052,'wc_remote_inbox_notifications_specs','a:34:{s:22:\"mercadopago_q3_2021_EN\";O:8:\"stdClass\":8:{s:4:\"slug\";s:22:\"mercadopago_q3_2021_EN\";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:35:\"Get paid with Mercado Pago Checkout\";s:7:\"content\";s:217:\"Latin America\'s leading payment processor is now available for WooCommerce stores. Securely accept debit and credit cards, cash, bank transfers, and installment payments – backed by exclusive fraud prevention tools.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"mercadopago_q3_2021_EN\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Free download\";}}s:3:\"url\";s:127:\"https://woocommerce.com/products/mercado-pago-checkout/?utm_source=inbox&utm_medium=product&utm_campaign=mercadopago_q3_2021_EN\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-08-30 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-09-10 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";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:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"MX\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AR\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CO\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CL\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"UY\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"PE\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BR\";}}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:6:\"WPLANG\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:5:\"en_US\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:6:\"WPLANG\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:0:\"\";}}}}}s:16:\"wayflyer_q3_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:16:\"wayflyer_q3_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:55:\"Grow your revenue with Wayflyer financing and analytics\";s:7:\"content\";s:322:\"Flexible financing tailored to your needs by <a href=\"https://woocommerce.com/products/wayflyer/\">Wayflyer</a> – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store\'s performance, Wayflyer can provide the financing you need to grow and the analytical insights to help you spend it.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"wayflyer_q3_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Get funded\";}}s:3:\"url\";s:42:\"https://woocommerce.com/products/wayflyer/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-07-19 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-07-31 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\"<=\";s:5:\"value\";s:3:\"200\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";s:3:\"100\";}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"UK\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}}}s:19:\"eu_vat_changes_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"eu_vat_changes_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:54:\"Get your business ready for the new EU tax regulations\";s:7:\"content\";s:617:\"On July 1, 2021, new taxation rules will come into play when the <a href=\"https://ec.europa.eu/taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_en\">European Union (EU) Value-Added Tax (VAT) eCommerce package</a> takes effect.<br/><br/>The new regulations will impact virtually every B2C business involved in cross-border eCommerce trade with the EU.<br/><br/>We therefore recommend <a href=\"https://woocommerce.com/posts/new-eu-vat-regulations\">familiarizing yourself with the new updates</a>, and consult with a tax professional to ensure your business is following regulations and best practice.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:19:\"eu_vat_changes_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:39:\"Learn more about the EU tax regulations\";}}s:3:\"url\";s:52:\"https://woocommerce.com/posts/new-eu-vat-regulations\";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-06-24 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-07-11 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:29:\"woocommerce_allowed_countries\";s:5:\"value\";s:3:\"all\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:1;a:2:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:29:\"woocommerce_allowed_countries\";s:5:\"value\";s:10:\"all_except\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:27:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"BE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"BG\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"CZ\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"DK\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"DE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"EE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"IE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"EL\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"ES\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"FR\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"HR\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"IT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"CY\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"LV\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"LT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"LU\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"HU\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"MT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"NL\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"AT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"PL\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"PT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"RO\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"SI\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"SK\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"FI\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:32:\"woocommerce_all_except_countries\";s:5:\"value\";s:2:\"SE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:9:\"!contains\";}}}}i:2;a:3:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:29:\"woocommerce_allowed_countries\";s:5:\"value\";s:3:\"all\";s:7:\"default\";b:0;s:9:\"operation\";s:2:\"!=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:29:\"woocommerce_allowed_countries\";s:5:\"value\";s:10:\"all_except\";s:7:\"default\";b:0;s:9:\"operation\";s:2:\"!=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:27:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"BE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"BG\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"CZ\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"DK\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"DE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"EE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"IE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"EL\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"ES\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"FR\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"HR\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"IT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"CY\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"LV\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"LT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"LU\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"HU\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"MT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"NL\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"AT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"PL\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"PT\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"RO\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"SI\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"SK\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"FI\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:38:\"woocommerce_specific_allowed_countries\";s:5:\"value\";s:2:\"SE\";s:7:\"default\";a:0:{}s:9:\"operation\";s:8:\"contains\";}}}}}}}}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:152:\"Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved measurement and ad targeting capabilities.\";}}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-05-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-06-14 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.4.0\";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:3:{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.3.0\";}i:2;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:\"!=\";}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";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:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";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\":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:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";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:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";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: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:26:\"woocommerce-gateway-stripe\";}}}}i:1;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\";}}}}s:31:\"wcpay_instant_deposits_gtm_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"wcpay_instant_deposits_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:69:\"Get paid within minutes – Instant Deposits for WooCommerce Payments\";s:7:\"content\";s:384:\"Stay flexible with immediate access to your funds when you need them – including nights, weekends, and holidays. With <a href=\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_instant_deposits\">WooCommerce Payments\'</a> new Instant Deposits feature, you’re able to transfer your earnings to a debit card within minutes.\";}}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:40:\"Learn about Instant Deposits eligibility\";}}s:3:\"url\";s:136:\"https://docs.woocommerce.com/document/payments/instant-deposits/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_instant_deposits\";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-05-18 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-06-01 00:00:00\";}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\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";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:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:56:\"https://woocommerce.com/products/google-listings-and-ads\";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-06-09 00:00:00\";}i:1;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:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";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:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:736:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site\'s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons&section=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";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:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";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\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":7:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";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:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":7:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";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:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:5:\"rules\";a:0:{}}s:30:\"wcpay-promo-2021-6-incentive-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wcpay-promo-2021-6-incentive-1\";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:82:\"Simplify the payments process for you and your customers with WooCommerce Payments\";s:7:\"content\";s:702:\"With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br/><br/>\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:25:\"get-woo-commerce-payments\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Payments\";}}s:3:\"url\";s:57:\"admin.php?page=wc-admin&action=setup-woocommerce-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:12:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:6:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"1\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"3\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"5\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"7\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"9\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:2:\"11\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}}}i:1;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:4:{i:0;s:17:\"crowdsignal-forms\";i:1;s:11:\"layout-grid\";i:2;s:17:\"full-site-editing\";i:3;s:13:\"page-optimize\";}}}}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:\"woocommerce_allow_tracking\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:2:\">=\";s:4:\"days\";i:31;}i:5;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:20:\"woocommerce-payments\";}}}}i:6;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.0\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:10:\"db_version\";s:5:\"value\";s:5:\"45805\";s:7:\"default\";i:0;s:9:\"operation\";s:2:\">=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:30:\"wcpay-promo-2021-6-incentive-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wcpay-promo-2021-6-incentive-2\";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:82:\"Simplify the payments process for you and your customers with WooCommerce Payments\";s:7:\"content\";s:702:\"With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br/><br/>\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"get-woocommerce-payments\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Payments\";}}s:3:\"url\";s:57:\"admin.php?page=wc-admin&action=setup-woocommerce-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:12:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:6:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"2\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"4\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"6\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:1:\"8\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:2:\"10\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";s:2:\"12\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}}}i:1;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:4:{i:0;s:17:\"crowdsignal-forms\";i:1;s:11:\"layout-grid\";i:2;s:17:\"full-site-editing\";i:3;s:13:\"page-optimize\";}}}}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:\"woocommerce_allow_tracking\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:2:\">=\";s:4:\"days\";i:31;}i:5;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:20:\"woocommerce-payments\";}}}}i:6;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.0\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:10:\"db_version\";s:5:\"value\";s:5:\"45805\";s:7:\"default\";i:0;s:9:\"operation\";s:2:\">=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-11\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:19:\"wcpay-promo-2020-12\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";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:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:440:\"Heads up! There\'s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";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: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\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{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\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";b:0;s:7:\"default\";b:0;}}}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";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:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:513:\"We\'ve developed a whole new <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension for WooCommerce</a> that combines the best features of our many PayPal extensions into just one extension.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br/><br/>Start using our latest PayPal today to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";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: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\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{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\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";b:0;s:7:\"default\";b:0;}}}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";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:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{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:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:23:{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:5:\"3.3.6\";}i:1;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:5:\"3.4.8\";}i:2;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:5:\"3.5.9\";}i:3;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:5:\"3.6.6\";}i:4;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:5:\"3.7.2\";}i:5;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:5:\"3.8.2\";}i:6;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:5:\"3.9.4\";}i:7;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:5:\"4.0.2\";}i:8;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:5:\"4.1.2\";}i:9;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:5:\"4.2.3\";}i:10;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:5:\"4.3.4\";}i:11;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:5:\"4.4.2\";}i:12;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:5:\"4.5.3\";}i:13;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:5:\"4.6.3\";}i:14;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:5:\"4.7.2\";}i:15;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:5:\"4.8.1\";}i:16;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:5:\"4.9.3\";}i:17;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:5:\"5.0.1\";}i:18;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:5:\"5.1.1\";}i:19;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:5:\"5.2.3\";}i:20;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:5:\"5.3.1\";}i:21;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:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";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:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{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:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";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:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{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:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;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:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";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:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{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:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}}','no'),
(1053,'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:0;}','no'),
(1056,'envato_market_state','activated','yes'),
(1057,'vc_version','8.7.2','yes'),
(1067,'wc_blocks_db_schema_version','260','yes'),
(1068,'lambert_options','a:83:{s:8:\"last_tab\";s:1:\"2\";s:7:\"favicon\";a:5:{s:3:\"url\";s:87:\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido-Construction-Icon.png\";s:2:\"id\";s:3:\"335\";s:6:\"height\";s:3:\"208\";s:5:\"width\";s:3:\"189\";s:9:\"thumbnail\";s:95:\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido-Construction-Icon-150x150.png\";}s:4:\"logo\";a:5:{s:3:\"url\";s:98:\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/Horizontal-Guido-Construction-Icon.png\";s:2:\"id\";s:3:\"336\";s:6:\"height\";s:3:\"207\";s:5:\"width\";s:3:\"514\";s:9:\"thumbnail\";s:106:\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/Horizontal-Guido-Construction-Icon-150x150.png\";}s:5:\"logo2\";a:5:{s:3:\"url\";s:101:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Typographical-Logo.png\";s:2:\"id\";s:3:\"128\";s:6:\"height\";s:2:\"85\";s:5:\"width\";s:3:\"208\";s:9:\"thumbnail\";s:108:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Typographical-Logo-150x85.png\";}s:15:\"logo_size_width\";s:3:\"150\";s:16:\"logo_size_height\";s:2:\"62\";s:9:\"logo_text\";s:0:\"\";s:6:\"slogan\";s:0:\"\";s:11:\"show_loader\";s:3:\"yes\";s:11:\"loader_icon\";a:5:{s:3:\"url\";s:87:\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido-Construction-Icon.png\";s:2:\"id\";s:3:\"335\";s:6:\"height\";s:3:\"208\";s:5:\"width\";s:3:\"189\";s:9:\"thumbnail\";s:95:\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido-Construction-Icon-150x150.png\";}s:12:\"gmap_api_key\";s:0:\"\";s:11:\"footer_info\";s:319:\"<div class=\"bold-separator\">\r\n<span></span>\r\n</div>\r\n<!--footer contacts links -->\r\n<ul class=\"footer-contacts\">\r\n<li><a href=\"#\">(541)672-7349</a></li>\r\n<li><a href=\"#\">190 NE Somerset Ct, Roseburg, OR 97470</a></li>\r\n<li><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></li>\r\n</ul>				\";s:16:\"footer_copyright\";s:256:\"<div class=\"to-top-holder\">\r\n<div class=\"container\">\r\n    <p> <span> © Copyright Guido Construction, Inc. 2021 . </span> All rights reserved.</p>\r\n    <div class=\"to-top\"><span>Back To Top </span><i class=\"fa fa-angle-double-up\"></i></div>\r\n</div>\r\n</div>\";s:19:\"enable_custom_sizes\";s:0:\"\";s:29:\"galmasonry_thumbnail_size_one\";a:3:{s:5:\"width\";s:3:\"367\";s:6:\"height\";s:3:\"230\";s:9:\"hard_crop\";s:1:\"1\";}s:29:\"galmasonry_thumbnail_size_two\";a:3:{s:5:\"width\";s:3:\"753\";s:6:\"height\";s:3:\"470\";s:9:\"hard_crop\";s:1:\"1\";}s:31:\"galmasonry_thumbnail_size_three\";a:3:{s:5:\"width\";s:4:\"1141\";s:6:\"height\";s:3:\"710\";s:9:\"hard_crop\";s:1:\"1\";}s:17:\"team_member_thumb\";a:3:{s:5:\"width\";s:3:\"160\";s:6:\"height\";s:3:\"160\";s:9:\"hard_crop\";s:1:\"1\";}s:16:\"blog_image_thumb\";a:3:{s:5:\"width\";s:3:\"750\";s:6:\"height\";s:3:\"469\";s:9:\"hard_crop\";s:1:\"1\";}s:22:\"blog_image_large_thumb\";a:3:{s:5:\"width\";s:3:\"750\";s:6:\"height\";s:3:\"469\";s:9:\"hard_crop\";s:1:\"1\";}s:13:\"mailchimp_api\";s:0:\"\";s:17:\"mailchimp_list_id\";s:0:\"\";s:12:\"color-preset\";s:4:\"blue\";s:15:\"override-preset\";s:1:\"1\";s:16:\"theme-skin-color\";s:7:\"#316FBC\";s:15:\"footer-bg-color\";s:7:\"#141A3C\";s:20:\"footer-copy-bg-color\";s:7:\"#A4B0BC\";s:16:\"overlay-bg-color\";s:7:\"#000000\";s:9:\"body-font\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:14:\"paragraph-font\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:11:\"header-font\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:10:\"text-align\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:14:\"blog_home_text\";s:18:\"Guido Construction\";s:20:\"blog_home_text_intro\";s:32:\"The concrete masters of the PNW \";s:17:\"blog_header_image\";a:5:{s:3:\"url\";s:129:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/topdown-drone-aerial-photography-concrete-pour-Guido_Construction.jpg\";s:2:\"id\";s:2:\"32\";s:6:\"height\";s:3:\"708\";s:5:\"width\";s:4:\"1259\";s:9:\"thumbnail\";s:137:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/topdown-drone-aerial-photography-concrete-pour-Guido_Construction-150x150.jpg\";}s:11:\"blog_layout\";s:9:\"fullwidth\";s:18:\"blog-sidebar-width\";s:1:\"4\";s:16:\"blog_breadcrumbs\";s:0:\"\";s:11:\"blog_author\";s:1:\"0\";s:9:\"blog_date\";s:1:\"0\";s:14:\"blog_like_post\";s:0:\"\";s:9:\"blog_cats\";s:1:\"0\";s:13:\"blog_comments\";s:1:\"0\";s:9:\"blog_tags\";s:1:\"0\";s:23:\"show_blog_header_single\";s:1:\"0\";s:20:\"blog_featured_single\";s:1:\"0\";s:18:\"blog_author_single\";s:1:\"0\";s:16:\"blog_date_single\";s:1:\"0\";s:16:\"blog_cats_single\";s:1:\"0\";s:20:\"blog_comments_single\";s:1:\"0\";s:16:\"blog_tags_single\";s:1:\"0\";s:21:\"blog_like_post_single\";s:0:\"\";s:24:\"blog_author_single_block\";s:1:\"0\";s:22:\"blog_single_navigation\";s:1:\"0\";s:25:\"blog_single_nav_same_term\";s:0:\"\";s:14:\"blog_list_link\";s:38:\"https://guidoconstructioninc.com/blog/\";s:6:\"shopbg\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:15:\"shop_page_intro\";s:350:\"<div class=\"section-title\">\r\n<h4>Shop Information</h4>\r\n</div>\r\n<div class=\"inner\">\r\n<p> Numerous commentators have also referred to the supposed restaurant owner\'s eccentric habit of touting for custom outside his establishment, dressed in aristocratic fashion and brandishing a sword</p>\r\n</div>\r\n<div class=\"bold-separator\">\r\n<span></span>\r\n</div>\";s:19:\"shop_posts_per_page\";s:2:\"12\";s:12:\"shop_columns\";s:1:\"4\";s:14:\"shop_smcolumns\";s:1:\"6\";s:12:\"shop_sidebar\";s:4:\"none\";s:22:\"related_products_count\";s:1:\"3\";s:16:\"shop_breadcrumbs\";s:1:\"0\";s:17:\"gallery_home_text\";s:61:\"<h1>Our gallery</h1>\r\n<h3>Booking a table online is easy</h3>\";s:20:\"gallery_header_image\";a:5:{s:3:\"url\";s:82:\"https://guidoconstructioninc.com/wp-content/themes/lambert/assets/images/bg/17.jpg\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"gallery_column\";s:5:\"three\";s:19:\"gallery_show_filter\";s:1:\"1\";s:22:\"gallery_filter_orderby\";s:4:\"name\";s:20:\"gallery_filter_order\";s:3:\"ASC\";s:22:\"gallery_posts_per_page\";s:2:\"12\";s:23:\"gallery_archive_orderby\";s:4:\"date\";s:21:\"gallery_archive_order\";s:4:\"DESC\";s:11:\"gallery_pad\";s:5:\"small\";s:23:\"gallery_show_pagination\";s:0:\"\";s:21:\"gallery_show_loadmore\";s:1:\"1\";s:16:\"gallery_lm_items\";s:1:\"3\";s:22:\"gallery_enable_gallery\";s:0:\"\";s:6:\"404_bg\";a:5:{s:3:\"url\";s:129:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/topdown-drone-aerial-photography-concrete-pour-Guido_Construction.jpg\";s:2:\"id\";s:2:\"32\";s:6:\"height\";s:3:\"708\";s:5:\"width\";s:4:\"1259\";s:9:\"thumbnail\";s:137:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/topdown-drone-aerial-photography-concrete-pour-Guido_Construction-150x150.jpg\";}s:9:\"404_intro\";s:59:\"Sorry, but the page you are looking for has not been found.\";s:10:\"custom-css\";s:0:\"\";s:17:\"custom-css-medium\";s:0:\"\";s:17:\"custom-css-tablet\";s:0:\"\";s:17:\"custom-css-mobile\";s:0:\"\";}','yes'),
(1069,'lambert_options-transients','a:5:{s:14:\"changed_values\";a:2:{s:8:\"last_tab\";s:1:\"1\";s:11:\"footer_info\";s:308:\"<div class=\"bold-separator\">\r\n<span></span>\r\n</div>\r\n<!--footer contacts links -->\r\n<ul class=\"footer-contacts\">\r\n<li><a href=\"#\">(541)672-7349</a></li>\r\n<li><a href=\"#\">PO Box 2311, Roseburg, OR 97470</a></li>\r\n<li><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></li>\r\n</ul>\";}s:9:\"last_save\";i:1639000981;s:13:\"last_compiler\";i:1639000981;s:11:\"last_import\";i:1639000981;s:7:\"notices\";a:2:{s:6:\"errors\";a:0:{}s:8:\"sanitize\";a:0:{}}}','yes'),
(1070,'wpb_js_composer_license_activation_notified','yes','yes'),
(1071,'woocommerce_meta_box_errors','a:0:{}','yes'),
(1120,'n2_ss3_version','3.5.1.32/b:release-3.5.1.32/r:c397fa89086306811d8c5aa5cd1a037cb099696f','yes'),
(1121,'widget_smartslider3','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(1122,'corefortress_slider_version','1.0.1','yes'),
(1168,'widget_lambert-recent-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),
(1179,'woocommerce_maybe_regenerate_images_hash','723901908284d382ecdf1b286ff5d882','yes'),
(1283,'nav_menu_options','a:1:{s:8:\"auto_add\";a:0:{}}','off'),
(2859,'redux-framework_allow_tracking','no','yes'),
(2860,'redux-framework_tracking_notice','hide','yes'),
(2861,'redux-framework_tracking_skipped','yes','yes'),
(2883,'woocommerce_onboarding_profile','a:1:{s:7:\"skipped\";b:1;}','yes'),
(2892,'woocommerce_task_list_welcome_modal_dismissed','yes','yes'),
(2920,'litespeed.conf.wc_update_interval','0','yes'),
(3639,'litespeed.conf.optm-ucss_inline','','yes'),
(3640,'litespeed.conf.optm-ucss_exc','[]','yes'),
(5681,'WPLANG','','yes'),
(5682,'new_admin_email','tiana@burtmg.com','yes'),
(5712,'auto_update_plugins','a:0:{}','no'),
(5713,'updraftplus_version','1.26.1','on'),
(5714,'updraft_updraftvault','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-f396ea5fe600eba5984ac9bb62c4c11c\";a:3:{s:5:\"token\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"quota\";i:-1;}}}','yes'),
(5715,'updraft_dropbox','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-8b832b66f08028eeef091e452e512621\";a:4:{s:6:\"appkey\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:6:\"folder\";s:0:\"\";s:15:\"tk_access_token\";s:0:\"\";}}}','yes'),
(5716,'updraft_s3','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-f5a4bd1a09b2f404ade45cc17f55d506\";a:3:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),
(5717,'updraft_cloudfiles','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-e9576c462ca1cc7c6ac6ce51bfadeed6\";a:5:{s:7:\"authurl\";s:35:\"https://auth.api.rackspacecloud.com\";s:6:\"region\";s:3:\"DFW\";s:4:\"user\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),
(5718,'updraft_googledrive','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-38b2b7925152dd0c371f490b1beae778\";a:9:{s:8:\"clientid\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:5:\"token\";s:0:\"\";s:6:\"folder\";s:11:\"UpdraftPlus\";s:7:\"user_id\";s:64:\"9d3f54d98f0f0e1b2de114d54fbdde038fc21a7fdb43c71bcf6c760c8399798c\";s:16:\"tmp_access_token\";a:4:{s:12:\"access_token\";s:165:\"ya29.a0ARrdaM8JeHukFNPnG2ghOGCeJGLL6VEteVZuktgiWAEUe_nnkSjgQ2YePo1OHnBw0IMeWeAUxd9jtWjcup73E29rBprRU5CX2NLcdK29GyVmO_I_fn7KB_NFiJLgrLywgZmUw7WphzsR1nDOEdMDOGSq6NNcKw\";s:7:\"created\";i:1637339481;s:10:\"expires_in\";i:3599;s:13:\"refresh_token\";s:0:\"\";}s:10:\"expires_in\";i:1637343050;s:9:\"ownername\";s:10:\"Tiana Burt\";s:16:\"instance_enabled\";i:1;}}}','yes'),
(5719,'updraft_onedrive','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(5720,'updraft_ftp','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-36e064b02a3e6e073011638256f8cf97\";a:5:{s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"path\";s:0:\"\";s:7:\"passive\";s:1:\"1\";}}}','yes'),
(5721,'updraft_azure','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(5722,'updraft_sftp','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(5723,'updraft_googlecloud','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(5724,'updraft_backblaze','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(5725,'updraft_webdav','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),
(5726,'updraft_s3generic','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-59457ed4b2fbeedfaa77a2221a071588\";a:5:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:0:\"\";s:19:\"bucket_access_style\";s:10:\"path_style\";}}}','yes'),
(5727,'updraft_openstack','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-04a57e27ba09be09f34ca66048c09cd8\";a:6:{s:7:\"authurl\";s:0:\"\";s:6:\"tenant\";s:0:\"\";s:6:\"region\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),
(5728,'updraft_dreamobjects','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-69e747d1150724407217ae041450293a\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:26:\"objects-us-east-1.dream.io\";}}}','yes'),
(5729,'updraftplus-addons_siteid','8a48ad89da5c02edf48d104979589d73','no'),
(5731,'updraft_lastmessage','Working binary zip found: /usr/bin/zip (Sep 24 01:17:20)','on'),
(5732,'updraftplus_unlocked_fd','1','no'),
(5733,'updraftplus_last_lock_time_fd','2021-11-19 00:13:08','no'),
(5734,'updraftplus_semaphore_fd','0','no'),
(5735,'updraft_last_scheduled_fd','1637280788','yes'),
(5737,'updraft_backup_history','a:1:{i:1637280788;a:19:{s:7:\"plugins\";a:1:{i:0;s:70:\"backup_2021-11-19-0013_Guido_Construction_Inc_675ad2190b94-plugins.zip\";}s:12:\"plugins-size\";i:39585395;s:6:\"themes\";a:1:{i:0;s:69:\"backup_2021-11-19-0013_Guido_Construction_Inc_675ad2190b94-themes.zip\";}s:11:\"themes-size\";i:7119988;s:7:\"uploads\";a:1:{i:0;s:70:\"backup_2021-11-19-0013_Guido_Construction_Inc_675ad2190b94-uploads.zip\";}s:12:\"uploads-size\";i:124976978;s:6:\"others\";a:1:{i:0;s:69:\"backup_2021-11-19-0013_Guido_Construction_Inc_675ad2190b94-others.zip\";}s:11:\"others-size\";i:196;s:2:\"db\";s:64:\"backup_2021-11-19-0013_Guido_Construction_Inc_675ad2190b94-db.gz\";s:7:\"db-size\";i:429081;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"5369ad0d474277a7a0f95ea66dd3cc3e6e9f3931\";s:7:\"themes0\";s:40:\"5bd0c862d985df29c4278194f449e76b7fbd3e81\";s:8:\"uploads0\";s:40:\"d0df10bf582dedb6d0b65c609d9819ac7fa03955\";s:7:\"others0\";s:40:\"95d0fc559859737aecf234ef3b57a71e266124d5\";s:3:\"db0\";s:40:\"224ff4d836e388a4ce02c62d630584c3c5183da3\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"4e6e764c4e7d2a222850b4668467c3879d0ceec6ec2095cc264e014e9f3eef65\";s:7:\"themes0\";s:64:\"4d4aa4d904d14795dc7fcf592223edfb81903c3702da825cc97390c210db028b\";s:8:\"uploads0\";s:64:\"f733cb38f71181c84e4ebc4f01cdaf341fd9e3b24acf87d623735d411f02ea52\";s:7:\"others0\";s:64:\"02c50fa27d54dcede84524f6de595ba2d0b75bbc097e3415108dabadf341f160\";s:3:\"db0\";s:64:\"475f2014a34c6b7fd6661c08d29404018faf87a050c110d3f84f320bc237ef60\";}}s:5:\"nonce\";s:12:\"675ad2190b94\";s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-38b2b7925152dd0c371f490b1beae778\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1637280789;s:6:\"themes\";i:1637280795;s:7:\"uploads\";i:1637280795;s:6:\"others\";i:1637280799;}s:18:\"created_by_version\";s:7:\"1.16.63\";s:21:\"last_saved_by_version\";s:7:\"1.16.63\";s:12:\"is_multisite\";b:0;}}','no'),
(5738,'updraft_last_backup','a:6:{s:26:\"nonincremental_backup_time\";i:1637280788;s:11:\"backup_time\";i:1637280788;s:12:\"backup_array\";a:11:{s:7:\"plugins\";a:1:{i:0;s:70:\"backup_2021-11-19-0013_Guido_Construction_Inc_675ad2190b94-plugins.zip\";}s:12:\"plugins-size\";i:39585395;s:6:\"themes\";a:1:{i:0;s:69:\"backup_2021-11-19-0013_Guido_Construction_Inc_675ad2190b94-themes.zip\";}s:11:\"themes-size\";i:7119988;s:7:\"uploads\";a:1:{i:0;s:70:\"backup_2021-11-19-0013_Guido_Construction_Inc_675ad2190b94-uploads.zip\";}s:12:\"uploads-size\";i:124976978;s:6:\"others\";a:1:{i:0;s:69:\"backup_2021-11-19-0013_Guido_Construction_Inc_675ad2190b94-others.zip\";}s:11:\"others-size\";i:196;s:2:\"db\";s:64:\"backup_2021-11-19-0013_Guido_Construction_Inc_675ad2190b94-db.gz\";s:7:\"db-size\";i:429081;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"5369ad0d474277a7a0f95ea66dd3cc3e6e9f3931\";s:7:\"themes0\";s:40:\"5bd0c862d985df29c4278194f449e76b7fbd3e81\";s:8:\"uploads0\";s:40:\"d0df10bf582dedb6d0b65c609d9819ac7fa03955\";s:7:\"others0\";s:40:\"95d0fc559859737aecf234ef3b57a71e266124d5\";s:3:\"db0\";s:40:\"224ff4d836e388a4ce02c62d630584c3c5183da3\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"4e6e764c4e7d2a222850b4668467c3879d0ceec6ec2095cc264e014e9f3eef65\";s:7:\"themes0\";s:64:\"4d4aa4d904d14795dc7fcf592223edfb81903c3702da825cc97390c210db028b\";s:8:\"uploads0\";s:64:\"f733cb38f71181c84e4ebc4f01cdaf341fd9e3b24acf87d623735d411f02ea52\";s:7:\"others0\";s:64:\"02c50fa27d54dcede84524f6de595ba2d0b75bbc097e3415108dabadf341f160\";s:3:\"db0\";s:64:\"475f2014a34c6b7fd6661c08d29404018faf87a050c110d3f84f320bc237ef60\";}}}s:7:\"success\";i:1;s:6:\"errors\";a:0:{}s:12:\"backup_nonce\";s:12:\"675ad2190b94\";}','yes'),
(5739,'updraft_retain_extrarules','a:0:{}','yes'),
(5740,'updraft_email','tiana@burtmg.com','yes'),
(5741,'updraft_report_warningsonly','a:0:{}','yes'),
(5742,'updraft_report_wholebackup','a:0:{}','yes'),
(5743,'updraft_extradbs','a:0:{}','yes'),
(5744,'updraft_include_more_path','a:0:{}','yes'),
(5745,'updraft_interval','manual','yes'),
(5746,'updraft_retain','2','yes'),
(5747,'updraft_interval_database','manual','yes'),
(5748,'updraft_retain_db','2','yes'),
(5749,'updraft_service','googledrive','yes'),
(5750,'updraft_include_plugins','1','yes'),
(5751,'updraft_include_themes','1','yes'),
(5752,'updraft_include_uploads','1','yes'),
(5753,'updraft_include_uploads_exclude','backup*,*backups,backwpup*,wp-clone,snapshots','yes'),
(5754,'updraft_include_others','1','yes'),
(5755,'updraft_include_others_exclude','upgrade,cache,updraft,backup*,*backups,mysql.sql,debug.log','yes'),
(5756,'updraft_split_every','400','yes'),
(5757,'updraft_delete_local','1','yes'),
(5758,'updraft_dir','updraft','yes'),
(5759,'updraft_debug_mode','0','yes'),
(5760,'updraft_ssl_useservercerts','0','yes'),
(5761,'updraft_ssl_disableverify','0','yes'),
(5762,'updraft_ssl_nossl','0','yes'),
(5766,'updraftplus_tour_cancelled_on','settings_remote_storage','yes'),
(5950,'ai1wm_secret_key','iBHNS3Iz0MUU','yes'),
(5951,'ai1wm_backups_labels','a:0:{}','yes'),
(5952,'ai1wm_sites_links','a:0:{}','yes'),
(5953,'ai1wm_status','a:3:{s:4:\"type\";s:5:\"error\";s:5:\"title\";s:13:\"Export failed\";s:7:\"message\";s:288:\"Could not open /home/burteany/guidoconstructioninc.com/wp-content/plugins/all-in-one-wp-migration/storage/error-log-0ruvrfc9vzfg.log with mode a. The process cannot continue. <a href=\"https://help.servmask.com/knowledgebase/invalid-file-permissions/\" target=\"_blank\">Technical details</a>\";}','yes'),
(5954,'swift_performance_plugin_organizer','a:0:{}','yes'),
(5955,'jetpack_active_modules','a:0:{}','yes'),
(5969,'_site_transient_ai1wm_last_check_for_updates','1770400705','off'),
(5970,'ai1wm_updater','a:0:{}','yes'),
(6168,'_transient_health-check-site-status-result','{\"good\":19,\"recommended\":5,\"critical\":0}','yes'),
(6618,'litespeed.conf.__activation','-1','yes'),
(6619,'litespeed.purge.queue','-1','yes'),
(6620,'litespeed.purge.queue2','-1','yes'),
(6624,'litespeed.data.upgrading','-1','yes'),
(7541,'litespeed.admin_display.messages','-1','yes'),
(7656,'litespeed.gui.lscwp_whm_install','-1','yes'),
(7657,'litespeed.gui.dismiss','-1','yes'),
(7658,'litespeed.admin_display.msg_pin','-1','yes'),
(8316,'wpb_js_templates','a:1:{s:20:\"contact-us_557397891\";a:2:{s:4:\"name\";s:10:\"Contact Us\";s:8:\"template\";s:4375:\"[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\n&nbsp;\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">FOR ADDITIONAL INFORMATION</h3>\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">PLEASE CONTACT US BY EMAIL AND ONE OF OUR ESTIMATORS WILL CONTACT YOU.</h3>\n[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"GUIDO CONSTRUCTION\nCCB# 183146\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]\";}}','no'),
(12245,'db_upgraded','','on'),
(30356,'awsm_permalink_slug','jobs','yes'),
(30357,'awsm_default_msg','We currently have no job openings','yes'),
(30358,'awsm_jobs_listing_view','list-view','yes'),
(30359,'awsm_jobs_list_per_page','10','yes'),
(30360,'awsm_jobs_number_of_columns','3','yes'),
(30361,'awsm_current_appearance_subtab','awsm-job-listing-nav-subtab','yes'),
(30362,'awsm_jobs_details_page_layout','single','yes'),
(30363,'awsm_jobs_filter','a:3:{i:0;a:2:{s:8:\"taxonomy\";s:12:\"job-category\";s:6:\"filter\";s:12:\"Job Category\";}i:1;a:3:{s:8:\"taxonomy\";s:8:\"job-type\";s:6:\"filter\";s:8:\"Job Type\";s:4:\"tags\";a:3:{i:0;s:9:\"Full Time\";i:1;s:9:\"Part Time\";i:2;s:9:\"Freelance\";}}i:2;a:2:{s:8:\"taxonomy\";s:12:\"job-location\";s:6:\"filter\";s:12:\"Job Location\";}}','yes'),
(30364,'awsm_enable_job_filter_listing','enabled','yes'),
(30365,'awsm_jobs_listing_available_filters','a:3:{i:0;s:12:\"job-category\";i:1;s:8:\"job-type\";i:2;s:12:\"job-location\";}','yes'),
(30366,'awsm_jobs_listing_specs','a:2:{i:0;s:12:\"job-category\";i:1;s:12:\"job-location\";}','yes'),
(30367,'awsm_jobs_admin_upload_file_ext','a:3:{i:0;s:3:\"pdf\";i:1;s:3:\"doc\";i:2;s:4:\"docx\";}','yes'),
(30368,'awsm_enable_gdpr_cb','true','yes'),
(30369,'awsm_gdpr_cb_text','By using this form you agree with the storage and handling of your data by this website.','yes'),
(30370,'awsm_jobs_acknowledgement','acknowledgement','yes'),
(30371,'awsm_jobs_notification_subject','Thanks for submitting your application for a job at {company}','yes'),
(30372,'awsm_jobs_notification_content','Dear {applicant},\n\nThis is to let you know that we have received your application.We appreciate your interest in {company} and the position of {job-title} for which you applied.  If you are selected for an interview, you can expect a phone call from our Human Resources staff shortly.\n\n Thank you, again, for your interest in our company. We do appreciate the time that you invested in this application.\n\nSincerely\n\nHR Manager\n{company}','yes'),
(30373,'awsm_jobs_enable_admin_notification','enable','yes'),
(30374,'awsm_jobs_admin_notification_subject','New application received for the position {job-title} [{job-id}]','yes'),
(30375,'awsm_jobs_admin_notification_content','Job Opening: {job-title} [{job-id}]\nName: {applicant}\nEmail: {applicant-email}\nPhone: {applicant-phone}\nResume: {applicant-resume}\nCover letter: {applicant-cover}\n\nPowered by WP Job Openings Plugin','yes'),
(30376,'awsm_jobs_from_email_notification','tiana@burtmg.com','yes'),
(30377,'awsm_jobs_admin_from_email_notification','tiana@burtmg.com','yes'),
(30378,'awsm_register_default_settings','1','yes'),
(30379,'awsm_jobs_insert_default_specs_terms','1','yes'),
(30380,'awsm_jobs_default_listing_page_id','498','yes'),
(30383,'widget_awsm-recent-jobs','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),
(30405,'awsm_job_company_name','Guido Construction Inc.','yes'),
(30406,'awsm_hr_email_address','info@guidoconstructioninc.com','yes'),
(30407,'awsm_jobs_hr_notification','info@guidoconstructioninc.com','yes'),
(30408,'awsm_jobs_admin_to_notification','info@guidoconstructioninc.com','yes'),
(30409,'awsm_select_page_listing','498','yes'),
(30410,'awsm_jobs_plugin_version','3.3.0','yes'),
(34207,'user_count','1','no'),
(35857,'litespeed.conf.debug-exc_strings','[]','yes'),
(35858,'litespeed.conf.media-vpi','','yes'),
(35859,'litespeed.conf.media-vpi_cron','1','yes'),
(35860,'litespeed.conf.qc-token','','yes'),
(35861,'litespeed.conf.qc-nameservers','','yes'),
(35867,'litespeed.admin_display.thirdparty_litespeed_check','1','yes'),
(39180,'loginizer_backuply_promo_time','1635890710','yes'),
(42881,'loginizer_csrf_promo_time','1635890710','yes'),
(44748,'extendify_active_tests','a:2:{s:22:\"remove-dont-see-inputs\";s:1:\"B\";s:19:\"launch-site-vs-next\";s:1:\"B\";}','yes'),
(50097,'litespeed.conf.optm-ucss_file_exc_inline','[]','yes'),
(50367,'extendify_first_installed_version','1.0.1','yes'),
(50368,'extendify_site_id','05fc8306-a100-417b-bbf0-7833eb8ed6a4','yes'),
(71070,'loginizer_login_attempt_stats','a:2000:{i:1756083600;a:1:{i:0;i:1;}i:1756087200;a:1:{i:0;i:3;}i:1756094400;a:1:{i:0;i:8;}i:1756137600;a:1:{i:0;i:1;}i:1756166400;a:1:{i:0;i:2;}i:1756177200;a:1:{i:0;i:1;}i:1756184400;a:1:{i:0;i:2;}i:1756191600;a:1:{i:0;i:2;}i:1756198800;a:1:{i:0;i:1;}i:1756209600;a:1:{i:0;i:1;}i:1756213200;a:1:{i:0;i:1;}i:1756220400;a:1:{i:0;i:6;}i:1756242000;a:1:{i:0;i:1;}i:1756252800;a:1:{i:0;i:6;}i:1756256400;a:1:{i:0;i:3;}i:1756267200;a:1:{i:0;i:2;}i:1756270800;a:1:{i:0;i:2;}i:1756274400;a:1:{i:0;i:1;}i:1756278000;a:1:{i:0;i:2;}i:1756285200;a:1:{i:0;i:2;}i:1756288800;a:1:{i:0;i:2;}i:1756303200;a:1:{i:0;i:1;}i:1756306800;a:1:{i:0;i:1;}i:1756314000;a:1:{i:0;i:13;}i:1756317600;a:1:{i:0;i:3;}i:1756321200;a:1:{i:0;i:1;}i:1756360800;a:1:{i:0;i:1;}i:1756364400;a:1:{i:0;i:1;}i:1756371600;a:1:{i:0;i:2;}i:1756375200;a:1:{i:0;i:2;}i:1756378800;a:1:{i:0;i:6;}i:1756393200;a:1:{i:0;i:3;}i:1756400400;a:1:{i:0;i:17;}i:1756407600;a:1:{i:0;i:4;}i:1756432800;a:1:{i:0;i:1;}i:1756440000;a:1:{i:0;i:1;}i:1756454400;a:1:{i:0;i:1;}i:1756458000;a:1:{i:0;i:1;}i:1756472400;a:1:{i:0;i:1;}i:1756494000;a:1:{i:0;i:1;}i:1756497600;a:1:{i:0;i:1;}i:1756526400;a:1:{i:0;i:1;}i:1756540800;a:1:{i:0;i:1;}i:1756609200;a:1:{i:0;i:1;}i:1756627200;a:1:{i:0;i:1;}i:1756630800;a:1:{i:0;i:6;}i:1756638000;a:1:{i:0;i:1;}i:1756656000;a:1:{i:0;i:4;}i:1756659600;a:1:{i:0;i:4;}i:1756695600;a:1:{i:0;i:9;}i:1756699200;a:1:{i:0;i:14;}i:1756702800;a:1:{i:0;i:15;}i:1756706400;a:1:{i:0;i:18;}i:1756710000;a:1:{i:0;i:23;}i:1756713600;a:1:{i:0;i:27;}i:1756717200;a:1:{i:0;i:23;}i:1756720800;a:1:{i:0;i:9;}i:1756724400;a:1:{i:0;i:20;}i:1756728000;a:1:{i:0;i:24;}i:1756731600;a:1:{i:0;i:21;}i:1756735200;a:1:{i:0;i:21;}i:1756738800;a:1:{i:0;i:9;}i:1756746000;a:1:{i:0;i:1;}i:1756749600;a:1:{i:0;i:21;}i:1756756800;a:1:{i:0;i:1;}i:1756760400;a:1:{i:0;i:1;}i:1756767600;a:1:{i:0;i:1;}i:1756778400;a:1:{i:0;i:6;}i:1756782000;a:1:{i:0;i:3;}i:1756785600;a:1:{i:0;i:1;}i:1756789200;a:1:{i:0;i:5;}i:1756792800;a:1:{i:0;i:6;}i:1756800000;a:1:{i:0;i:7;}i:1756803600;a:1:{i:0;i:8;}i:1756807200;a:1:{i:0;i:1;}i:1756810800;a:1:{i:0;i:1;}i:1756818000;a:1:{i:0;i:4;}i:1756821600;a:1:{i:0;i:1;}i:1756832400;a:1:{i:0;i:1;}i:1756846800;a:1:{i:0;i:1;}i:1756868400;a:1:{i:0;i:1;}i:1756882800;a:1:{i:0;i:4;}i:1756890000;a:1:{i:0;i:1;}i:1756915200;a:1:{i:0;i:1;}i:1756926000;a:1:{i:1;i:1;}i:1756951200;a:1:{i:0;i:1;}i:1756958400;a:1:{i:0;i:2;}i:1756962000;a:1:{i:0;i:1;}i:1756976400;a:1:{i:0;i:1;}i:1756980000;a:1:{i:0;i:1;}i:1757001600;a:1:{i:0;i:1;}i:1757012400;a:1:{i:0;i:1;}i:1757016000;a:1:{i:0;i:2;}i:1757023200;a:1:{i:0;i:2;}i:1757026800;a:1:{i:0;i:6;}i:1757044800;a:1:{i:0;i:3;}i:1757052000;a:1:{i:0;i:3;}i:1757059200;a:1:{i:0;i:4;}i:1757062800;a:1:{i:0;i:1;}i:1757066400;a:1:{i:0;i:1;}i:1757073600;a:1:{i:0;i:1;}i:1757091600;a:1:{i:0;i:4;}i:1757095200;a:1:{i:0;i:3;}i:1757098800;a:1:{i:0;i:3;}i:1757116800;a:1:{i:0;i:7;}i:1757120400;a:1:{i:0;i:6;}i:1757124000;a:1:{i:0;i:8;}i:1757134800;a:1:{i:0;i:2;}i:1757138400;a:1:{i:0;i:4;}i:1757174400;a:1:{i:0;i:2;}i:1757178000;a:1:{i:0;i:1;}i:1757185200;a:1:{i:0;i:5;}i:1757188800;a:1:{i:0;i:5;}i:1757192400;a:1:{i:0;i:5;}i:1757196000;a:1:{i:0;i:6;}i:1757199600;a:1:{i:0;i:4;}i:1757203200;a:1:{i:0;i:6;}i:1757206800;a:1:{i:0;i:7;}i:1757210400;a:1:{i:0;i:4;}i:1757214000;a:1:{i:0;i:8;}i:1757217600;a:1:{i:0;i:6;}i:1757221200;a:1:{i:0;i:2;}i:1757224800;a:1:{i:0;i:5;}i:1757228400;a:1:{i:0;i:6;}i:1757232000;a:1:{i:0;i:10;}i:1757235600;a:1:{i:0;i:12;}i:1757239200;a:1:{i:0;i:11;}i:1757242800;a:1:{i:0;i:6;}i:1757246400;a:1:{i:0;i:5;}i:1757250000;a:1:{i:0;i:4;}i:1757253600;a:1:{i:0;i:5;}i:1757257200;a:1:{i:0;i:2;}i:1757271600;a:1:{i:0;i:1;}i:1757278800;a:1:{i:0;i:1;}i:1757286000;a:1:{i:0;i:1;}i:1757289600;a:1:{i:0;i:1;}i:1757293200;a:1:{i:0;i:1;}i:1757296800;a:1:{i:0;i:3;}i:1757307600;a:1:{i:0;i:1;}i:1757314800;a:1:{i:0;i:1;}i:1757322000;a:1:{i:0;i:1;}i:1757332800;a:1:{i:0;i:1;}i:1757340000;a:1:{i:0;i:3;}i:1757343600;a:1:{i:0;i:1;}i:1757394000;a:1:{i:0;i:8;}i:1757397600;a:1:{i:0;i:2;}i:1757404800;a:1:{i:0;i:8;}i:1757437200;a:1:{i:0;i:1;}i:1757444400;a:1:{i:0;i:1;}i:1757458800;a:1:{i:0;i:1;}i:1757473200;a:1:{i:0;i:1;}i:1757613600;a:1:{i:0;i:1;}i:1757620800;a:1:{i:0;i:1;}i:1757653200;a:1:{i:0;i:2;}i:1757656800;a:1:{i:0;i:2;}i:1757664000;a:1:{i:0;i:3;}i:1757671200;a:1:{i:0;i:1;}i:1757682000;a:1:{i:0;i:2;}i:1757685600;a:1:{i:0;i:4;}i:1757700000;a:1:{i:0;i:1;}i:1757718000;a:1:{i:0;i:1;}i:1757725200;a:1:{i:0;i:1;}i:1757732400;a:1:{i:0;i:1;}i:1757750400;a:1:{i:0;i:11;}i:1757757600;a:1:{i:0;i:2;}i:1757822400;a:1:{i:0;i:1;}i:1757833200;a:1:{i:0;i:1;}i:1757836800;a:1:{i:0;i:1;}i:1757840400;a:1:{i:0;i:1;}i:1757847600;a:1:{i:0;i:1;}i:1757851200;a:1:{i:0;i:1;}i:1757858400;a:1:{i:0;i:1;}i:1757862000;a:1:{i:0;i:1;}i:1757865600;a:1:{i:0;i:6;}i:1757869200;a:1:{i:0;i:4;}i:1757876400;a:1:{i:0;i:1;}i:1757887200;a:1:{i:0;i:3;}i:1757908800;a:1:{i:0;i:3;}i:1757916000;a:1:{i:0;i:1;}i:1757973600;a:1:{i:0;i:1;}i:1757980800;a:1:{i:0;i:8;}i:1758009600;a:1:{i:0;i:1;}i:1758038400;a:1:{i:0;i:1;}i:1758045600;a:1:{i:0;i:1;}i:1758056400;a:1:{i:0;i:1;}i:1758060000;a:1:{i:0;i:1;}i:1758092400;a:1:{i:0;i:10;}i:1758099600;a:1:{i:0;i:1;}i:1758128400;a:1:{i:0;i:6;}i:1758132000;a:1:{i:0;i:1;}i:1758164400;a:1:{i:0;i:1;}i:1758178800;a:1:{i:0;i:1;}i:1758182400;a:1:{i:0;i:1;}i:1758218400;a:1:{i:0;i:1;}i:1758272400;a:1:{i:0;i:1;}i:1758308400;a:1:{i:0;i:1;}i:1758337200;a:1:{i:0;i:1;}i:1758380400;a:1:{i:0;i:2;}i:1758384000;a:1:{i:0;i:2;}i:1758420000;a:1:{i:0;i:2;}i:1758427200;a:1:{i:0;i:2;}i:1758430800;a:1:{i:0;i:1;}i:1758434400;a:1:{i:0;i:1;}i:1758463200;a:1:{i:0;i:1;}i:1758474000;a:1:{i:0;i:1;}i:1758481200;a:1:{i:0;i:1;}i:1758502800;a:1:{i:0;i:1;}i:1758520800;a:1:{i:0;i:1;}i:1758528000;a:1:{i:0;i:1;}i:1758542400;a:1:{i:0;i:1;}i:1758549600;a:1:{i:0;i:2;}i:1758553200;a:1:{i:0;i:6;}i:1758556800;a:1:{i:0;i:4;}i:1758560400;a:1:{i:0;i:1;}i:1758564000;a:1:{i:0;i:1;}i:1758571200;a:1:{i:0;i:1;}i:1758578400;a:1:{i:0;i:1;}i:1758600000;a:1:{i:0;i:2;}i:1758603600;a:1:{i:0;i:1;}i:1758607200;a:1:{i:0;i:2;}i:1758610800;a:1:{i:0;i:3;}i:1758614400;a:1:{i:0;i:1;}i:1758618000;a:1:{i:0;i:2;}i:1758621600;a:1:{i:0;i:1;}i:1758625200;a:1:{i:0;i:6;}i:1758628800;a:1:{i:0;i:2;}i:1758650400;a:1:{i:0;i:1;}i:1758661200;a:2:{i:1;i:1;i:0;i:4;}i:1758664800;a:1:{i:0;i:3;}i:1758668400;a:1:{i:0;i:2;}i:1758672000;a:1:{i:0;i:2;}i:1758675600;a:1:{i:0;i:3;}i:1758679200;a:1:{i:0;i:2;}i:1758682800;a:1:{i:0;i:2;}i:1758686400;a:1:{i:0;i:2;}i:1758690000;a:1:{i:0;i:2;}i:1758693600;a:1:{i:0;i:2;}i:1758697200;a:1:{i:0;i:3;}i:1758700800;a:1:{i:0;i:2;}i:1758711600;a:1:{i:0;i:1;}i:1758729600;a:1:{i:1;i:1;}i:1758733200;a:1:{i:0;i:1;}i:1758736800;a:1:{i:0;i:1;}i:1758740400;a:1:{i:0;i:1;}i:1758758400;a:1:{i:0;i:1;}i:1758762000;a:1:{i:0;i:1;}i:1758772800;a:1:{i:0;i:2;}i:1758776400;a:1:{i:0;i:1;}i:1758780000;a:1:{i:0;i:5;}i:1758783600;a:1:{i:0;i:10;}i:1758787200;a:1:{i:0;i:7;}i:1758790800;a:1:{i:0;i:11;}i:1758794400;a:1:{i:0;i:20;}i:1758798000;a:1:{i:0;i:19;}i:1758801600;a:1:{i:0;i:14;}i:1758805200;a:1:{i:0;i:4;}i:1758808800;a:1:{i:0;i:2;}i:1758812400;a:1:{i:0;i:1;}i:1758816000;a:1:{i:0;i:1;}i:1758844800;a:1:{i:0;i:1;}i:1758848400;a:1:{i:0;i:3;}i:1758855600;a:1:{i:0;i:1;}i:1758859200;a:1:{i:0;i:1;}i:1758870000;a:1:{i:0;i:11;}i:1758873600;a:1:{i:0;i:48;}i:1758877200;a:1:{i:0;i:111;}i:1758880800;a:1:{i:0;i:9;}i:1758884400;a:1:{i:0;i:9;}i:1758888000;a:1:{i:0;i:1;}i:1758895200;a:1:{i:0;i:3;}i:1758898800;a:1:{i:0;i:3;}i:1758902400;a:1:{i:0;i:1;}i:1758906000;a:1:{i:0;i:1;}i:1758909600;a:1:{i:0;i:1;}i:1758913200;a:1:{i:0;i:1;}i:1758916800;a:1:{i:0;i:2;}i:1758927600;a:1:{i:0;i:4;}i:1758931200;a:1:{i:0;i:5;}i:1758934800;a:1:{i:0;i:25;}i:1758938400;a:1:{i:0;i:1;}i:1758942000;a:1:{i:0;i:12;}i:1758945600;a:1:{i:0;i:18;}i:1758949200;a:1:{i:0;i:7;}i:1758952800;a:1:{i:0;i:2;}i:1758956400;a:1:{i:0;i:7;}i:1758960000;a:1:{i:0;i:4;}i:1758963600;a:1:{i:0;i:8;}i:1758967200;a:1:{i:0;i:4;}i:1758970800;a:1:{i:0;i:8;}i:1758974400;a:1:{i:0;i:2;}i:1758985200;a:1:{i:0;i:1;}i:1759006800;a:1:{i:0;i:1;}i:1759010400;a:1:{i:0;i:2;}i:1759014000;a:1:{i:0;i:1;}i:1759017600;a:1:{i:0;i:1;}i:1759024800;a:1:{i:0;i:1;}i:1759028400;a:1:{i:0;i:1;}i:1759032000;a:1:{i:0;i:3;}i:1759035600;a:1:{i:0;i:4;}i:1759039200;a:1:{i:0;i:1;}i:1759046400;a:1:{i:0;i:1;}i:1759053600;a:1:{i:0;i:1;}i:1759060800;a:1:{i:0;i:3;}i:1759064400;a:1:{i:0;i:1;}i:1759068000;a:1:{i:0;i:1;}i:1759078800;a:1:{i:0;i:1;}i:1759107600;a:1:{i:0;i:1;}i:1759114800;a:1:{i:0;i:1;}i:1759118400;a:1:{i:0;i:1;}i:1759122000;a:1:{i:0;i:1;}i:1759129200;a:1:{i:0;i:1;}i:1759136400;a:1:{i:0;i:4;}i:1759140000;a:1:{i:0;i:5;}i:1759147200;a:1:{i:0;i:1;}i:1759154400;a:1:{i:0;i:1;}i:1759161600;a:1:{i:0;i:2;}i:1759172400;a:1:{i:0;i:1;}i:1759179600;a:1:{i:0;i:1;}i:1759186800;a:1:{i:0;i:1;}i:1759194000;a:1:{i:0;i:2;}i:1759197600;a:1:{i:0;i:1;}i:1759201200;a:1:{i:0;i:1;}i:1759208400;a:1:{i:0;i:1;}i:1759212000;a:1:{i:0;i:2;}i:1759219200;a:1:{i:0;i:1;}i:1759233600;a:1:{i:0;i:1;}i:1759255200;a:1:{i:0;i:1;}i:1759262400;a:1:{i:0;i:2;}i:1759266000;a:1:{i:0;i:3;}i:1759269600;a:1:{i:0;i:3;}i:1759273200;a:1:{i:0;i:3;}i:1759276800;a:1:{i:0;i:2;}i:1759280400;a:1:{i:0;i:4;}i:1759284000;a:1:{i:0;i:2;}i:1759287600;a:1:{i:0;i:2;}i:1759291200;a:1:{i:0;i:4;}i:1759294800;a:1:{i:0;i:3;}i:1759298400;a:1:{i:0;i:3;}i:1759302000;a:1:{i:0;i:3;}i:1759305600;a:1:{i:0;i:2;}i:1759309200;a:1:{i:0;i:3;}i:1759359600;a:1:{i:0;i:1;}i:1759374000;a:1:{i:0;i:5;}i:1759377600;a:1:{i:0;i:3;}i:1759406400;a:1:{i:0;i:3;}i:1759410000;a:1:{i:0;i:3;}i:1759413600;a:1:{i:0;i:1;}i:1759417200;a:1:{i:0;i:3;}i:1759420800;a:1:{i:0;i:1;}i:1759424400;a:1:{i:0;i:3;}i:1759431600;a:1:{i:0;i:1;}i:1759438800;a:1:{i:0;i:1;}i:1759449600;a:1:{i:0;i:1;}i:1759478400;a:1:{i:0;i:1;}i:1759485600;a:1:{i:0;i:1;}i:1759532400;a:1:{i:0;i:1;}i:1759543200;a:1:{i:0;i:3;}i:1759665600;a:1:{i:0;i:2;}i:1759669200;a:1:{i:0;i:8;}i:1759672800;a:1:{i:0;i:3;}i:1759680000;a:1:{i:0;i:1;}i:1759683600;a:1:{i:0;i:1;}i:1759698000;a:1:{i:0;i:8;}i:1759708800;a:1:{i:0;i:1;}i:1759719600;a:1:{i:0;i:1;}i:1759741200;a:1:{i:0;i:1;}i:1759762800;a:1:{i:0;i:12;}i:1759766400;a:1:{i:0;i:139;}i:1759770000;a:1:{i:0;i:133;}i:1759773600;a:1:{i:0;i:64;}i:1759820400;a:1:{i:0;i:1;}i:1759827600;a:1:{i:0;i:1;}i:1759834800;a:1:{i:0;i:1;}i:1759845600;a:1:{i:0;i:1;}i:1759852800;a:1:{i:0;i:2;}i:1759860000;a:1:{i:0;i:2;}i:1759863600;a:1:{i:0;i:1;}i:1759870800;a:1:{i:0;i:1;}i:1759899600;a:1:{i:0;i:1;}i:1759903200;a:1:{i:0;i:1;}i:1759906800;a:1:{i:0;i:1;}i:1759914000;a:1:{i:0;i:1;}i:1759921200;a:1:{i:0;i:4;}i:1759924800;a:1:{i:0;i:2;}i:1759928400;a:1:{i:0;i:4;}i:1759932000;a:1:{i:0;i:2;}i:1759935600;a:1:{i:0;i:3;}i:1759939200;a:1:{i:0;i:4;}i:1759942800;a:1:{i:0;i:3;}i:1759946400;a:1:{i:0;i:2;}i:1759950000;a:1:{i:0;i:1;}i:1759953600;a:1:{i:0;i:2;}i:1759957200;a:1:{i:0;i:1;}i:1759960800;a:1:{i:0;i:1;}i:1759964400;a:1:{i:0;i:2;}i:1759968000;a:1:{i:0;i:1;}i:1759971600;a:1:{i:0;i:1;}i:1760140800;a:1:{i:0;i:1;}i:1760148000;a:1:{i:0;i:1;}i:1760169600;a:1:{i:0;i:1;}i:1760173200;a:1:{i:0;i:1;}i:1760180400;a:1:{i:0;i:1;}i:1760194800;a:1:{i:0;i:1;}i:1760198400;a:1:{i:0;i:2;}i:1760202000;a:1:{i:0;i:1;}i:1760209200;a:1:{i:0;i:1;}i:1760212800;a:1:{i:0;i:1;}i:1760220000;a:1:{i:0;i:1;}i:1760227200;a:1:{i:0;i:1;}i:1760230800;a:1:{i:0;i:1;}i:1760234400;a:1:{i:0;i:1;}i:1760241600;a:1:{i:0;i:2;}i:1760245200;a:1:{i:0;i:1;}i:1760259600;a:1:{i:0;i:1;}i:1760266800;a:1:{i:0;i:1;}i:1760277600;a:1:{i:0;i:4;}i:1760281200;a:1:{i:0;i:7;}i:1760284800;a:1:{i:0;i:2;}i:1760288400;a:1:{i:0;i:6;}i:1760292000;a:1:{i:0;i:3;}i:1760295600;a:1:{i:0;i:2;}i:1760299200;a:1:{i:0;i:1;}i:1760302800;a:1:{i:0;i:2;}i:1760310000;a:1:{i:0;i:3;}i:1760313600;a:1:{i:0;i:1;}i:1760324400;a:1:{i:0;i:1;}i:1760328000;a:1:{i:0;i:3;}i:1760331600;a:1:{i:0;i:6;}i:1760335200;a:1:{i:0;i:4;}i:1760338800;a:1:{i:0;i:1;}i:1760342400;a:1:{i:0;i:1;}i:1760346000;a:1:{i:0;i:1;}i:1760349600;a:1:{i:0;i:4;}i:1760353200;a:1:{i:0;i:1;}i:1760356800;a:1:{i:0;i:2;}i:1760367600;a:1:{i:0;i:2;}i:1760371200;a:1:{i:0;i:3;}i:1760378400;a:1:{i:0;i:1;}i:1760382000;a:1:{i:0;i:1;}i:1760385600;a:1:{i:0;i:2;}i:1760389200;a:1:{i:0;i:2;}i:1760392800;a:1:{i:0;i:3;}i:1760396400;a:1:{i:0;i:3;}i:1760400000;a:1:{i:0;i:3;}i:1760407200;a:1:{i:0;i:2;}i:1760414400;a:1:{i:0;i:5;}i:1760421600;a:1:{i:0;i:2;}i:1760428800;a:1:{i:0;i:1;}i:1760432400;a:1:{i:0;i:2;}i:1760436000;a:1:{i:0;i:5;}i:1760439600;a:1:{i:0;i:1;}i:1760443200;a:1:{i:0;i:2;}i:1760450400;a:1:{i:0;i:3;}i:1760454000;a:1:{i:0;i:1;}i:1760457600;a:1:{i:0;i:4;}i:1760461200;a:1:{i:0;i:1;}i:1760464800;a:1:{i:0;i:1;}i:1760468400;a:1:{i:0;i:1;}i:1760472000;a:1:{i:0;i:3;}i:1760475600;a:1:{i:0;i:2;}i:1760479200;a:1:{i:0;i:1;}i:1760482800;a:1:{i:0;i:1;}i:1760486400;a:1:{i:0;i:3;}i:1760490000;a:1:{i:0;i:6;}i:1760493600;a:1:{i:0;i:2;}i:1760497200;a:1:{i:0;i:3;}i:1760500800;a:1:{i:0;i:2;}i:1760504400;a:1:{i:0;i:4;}i:1760508000;a:1:{i:0;i:2;}i:1760511600;a:1:{i:0;i:6;}i:1760515200;a:1:{i:0;i:1;}i:1760518800;a:1:{i:0;i:2;}i:1760526000;a:1:{i:0;i:1;}i:1760533200;a:1:{i:0;i:2;}i:1760536800;a:1:{i:0;i:1;}i:1760544000;a:1:{i:0;i:5;}i:1760547600;a:1:{i:0;i:3;}i:1760554800;a:1:{i:0;i:1;}i:1760569200;a:1:{i:0;i:2;}i:1760580000;a:1:{i:0;i:2;}i:1760583600;a:1:{i:0;i:2;}i:1760587200;a:1:{i:0;i:1;}i:1760590800;a:1:{i:0;i:1;}i:1760594400;a:1:{i:0;i:1;}i:1760598000;a:1:{i:0;i:3;}i:1760605200;a:1:{i:0;i:1;}i:1760616000;a:1:{i:0;i:6;}i:1760619600;a:1:{i:0;i:1;}i:1760623200;a:1:{i:0;i:3;}i:1760626800;a:1:{i:0;i:1;}i:1760630400;a:1:{i:0;i:1;}i:1760634000;a:1:{i:0;i:4;}i:1760637600;a:1:{i:0;i:1;}i:1760641200;a:1:{i:0;i:3;}i:1760655600;a:1:{i:0;i:2;}i:1760659200;a:1:{i:0;i:1;}i:1760662800;a:1:{i:0;i:3;}i:1760666400;a:1:{i:0;i:3;}i:1760670000;a:1:{i:0;i:5;}i:1760673600;a:1:{i:0;i:3;}i:1760688000;a:1:{i:0;i:2;}i:1760691600;a:1:{i:0;i:1;}i:1760695200;a:1:{i:0;i:4;}i:1760698800;a:1:{i:0;i:4;}i:1760702400;a:1:{i:0;i:1;}i:1760706000;a:1:{i:0;i:3;}i:1760709600;a:1:{i:0;i:1;}i:1760713200;a:1:{i:0;i:1;}i:1760716800;a:1:{i:0;i:1;}i:1760720400;a:1:{i:0;i:1;}i:1760724000;a:1:{i:0;i:2;}i:1760727600;a:1:{i:0;i:4;}i:1760731200;a:1:{i:0;i:4;}i:1760734800;a:1:{i:0;i:1;}i:1760738400;a:1:{i:0;i:1;}i:1760742000;a:1:{i:0;i:2;}i:1760749200;a:1:{i:0;i:4;}i:1760752800;a:1:{i:0;i:3;}i:1760760000;a:1:{i:0;i:1;}i:1760763600;a:1:{i:0;i:2;}i:1760767200;a:1:{i:0;i:3;}i:1760781600;a:1:{i:0;i:1;}i:1760785200;a:1:{i:0;i:1;}i:1760792400;a:1:{i:0;i:1;}i:1760796000;a:1:{i:0;i:1;}i:1760799600;a:1:{i:0;i:3;}i:1760803200;a:1:{i:0;i:2;}i:1760810400;a:1:{i:0;i:3;}i:1760821200;a:1:{i:0;i:1;}i:1760828400;a:1:{i:0;i:3;}i:1760857200;a:1:{i:0;i:5;}i:1760860800;a:1:{i:0;i:1;}i:1760864400;a:1:{i:0;i:1;}i:1760871600;a:1:{i:0;i:2;}i:1760875200;a:1:{i:0;i:3;}i:1760878800;a:1:{i:0;i:4;}i:1760882400;a:1:{i:0;i:1;}i:1760886000;a:1:{i:0;i:2;}i:1760889600;a:1:{i:0;i:1;}i:1760900400;a:1:{i:0;i:2;}i:1760914800;a:1:{i:0;i:1;}i:1760918400;a:1:{i:0;i:2;}i:1760922000;a:1:{i:0;i:1;}i:1760932800;a:1:{i:0;i:1;}i:1760936400;a:1:{i:0;i:1;}i:1760947200;a:1:{i:0;i:1;}i:1760950800;a:1:{i:0;i:1;}i:1760958000;a:1:{i:0;i:4;}i:1760961600;a:1:{i:0;i:1;}i:1760968800;a:1:{i:0;i:1;}i:1760972400;a:1:{i:0;i:3;}i:1760976000;a:1:{i:0;i:4;}i:1760979600;a:1:{i:0;i:4;}i:1760983200;a:1:{i:0;i:3;}i:1760986800;a:1:{i:0;i:1;}i:1761004800;a:1:{i:0;i:1;}i:1761012000;a:1:{i:0;i:1;}i:1761022800;a:1:{i:0;i:14;}i:1761026400;a:1:{i:0;i:14;}i:1761030000;a:1:{i:0;i:34;}i:1761033600;a:1:{i:0;i:27;}i:1761037200;a:1:{i:0;i:18;}i:1761040800;a:1:{i:0;i:1;}i:1761044400;a:1:{i:0;i:1;}i:1761048000;a:1:{i:0;i:1;}i:1761051600;a:1:{i:0;i:3;}i:1761055200;a:1:{i:0;i:1;}i:1761058800;a:1:{i:0;i:1;}i:1761062400;a:1:{i:0;i:2;}i:1761069600;a:1:{i:0;i:1;}i:1761073200;a:1:{i:0;i:1;}i:1761076800;a:1:{i:0;i:3;}i:1761080400;a:1:{i:0;i:3;}i:1761084000;a:1:{i:0;i:1;}i:1761087600;a:1:{i:0;i:9;}i:1761091200;a:1:{i:0;i:6;}i:1761094800;a:1:{i:0;i:1;}i:1761098400;a:1:{i:0;i:5;}i:1761102000;a:1:{i:0;i:3;}i:1761105600;a:1:{i:0;i:5;}i:1761109200;a:1:{i:0;i:1;}i:1761112800;a:1:{i:0;i:4;}i:1761120000;a:1:{i:0;i:4;}i:1761127200;a:1:{i:0;i:5;}i:1761130800;a:1:{i:0;i:7;}i:1761138000;a:1:{i:0;i:4;}i:1761141600;a:1:{i:0;i:1;}i:1761145200;a:1:{i:0;i:6;}i:1761148800;a:1:{i:0;i:2;}i:1761159600;a:1:{i:0;i:3;}i:1761163200;a:1:{i:0;i:2;}i:1761166800;a:1:{i:0;i:2;}i:1761170400;a:1:{i:0;i:4;}i:1761174000;a:1:{i:0;i:2;}i:1761177600;a:1:{i:0;i:4;}i:1761184800;a:1:{i:0;i:2;}i:1761188400;a:1:{i:0;i:1;}i:1761195600;a:1:{i:0;i:2;}i:1761199200;a:1:{i:0;i:2;}i:1761202800;a:1:{i:0;i:2;}i:1761206400;a:1:{i:0;i:4;}i:1761210000;a:1:{i:0;i:2;}i:1761213600;a:1:{i:0;i:5;}i:1761217200;a:1:{i:0;i:9;}i:1761220800;a:1:{i:0;i:11;}i:1761224400;a:1:{i:0;i:5;}i:1761238800;a:1:{i:0;i:2;}i:1761242400;a:1:{i:0;i:1;}i:1761246000;a:1:{i:0;i:1;}i:1761253200;a:1:{i:0;i:2;}i:1761256800;a:1:{i:0;i:2;}i:1761264000;a:1:{i:0;i:2;}i:1761267600;a:1:{i:0;i:2;}i:1761271200;a:1:{i:0;i:2;}i:1761274800;a:1:{i:0;i:3;}i:1761278400;a:1:{i:0;i:3;}i:1761282000;a:1:{i:0;i:3;}i:1761303600;a:1:{i:0;i:3;}i:1761310800;a:1:{i:0;i:1;}i:1761314400;a:1:{i:0;i:1;}i:1761321600;a:1:{i:0;i:1;}i:1761325200;a:1:{i:0;i:1;}i:1761332400;a:1:{i:0;i:2;}i:1761336000;a:1:{i:0;i:2;}i:1761339600;a:1:{i:0;i:1;}i:1761346800;a:1:{i:0;i:1;}i:1761350400;a:1:{i:0;i:6;}i:1761354000;a:1:{i:0;i:1;}i:1761357600;a:1:{i:0;i:2;}i:1761361200;a:1:{i:0;i:2;}i:1761364800;a:1:{i:0;i:3;}i:1761372000;a:1:{i:0;i:1;}i:1761375600;a:1:{i:0;i:3;}i:1761379200;a:1:{i:0;i:3;}i:1761382800;a:1:{i:0;i:2;}i:1761397200;a:1:{i:0;i:1;}i:1761404400;a:1:{i:0;i:1;}i:1761408000;a:1:{i:0;i:1;}i:1761415200;a:1:{i:0;i:1;}i:1761418800;a:1:{i:0;i:1;}i:1761422400;a:1:{i:0;i:1;}i:1761426000;a:1:{i:0;i:6;}i:1761429600;a:1:{i:0;i:1;}i:1761436800;a:1:{i:0;i:4;}i:1761440400;a:1:{i:0;i:1;}i:1761444000;a:1:{i:0;i:3;}i:1761447600;a:1:{i:0;i:2;}i:1761451200;a:1:{i:0;i:6;}i:1761458400;a:1:{i:0;i:1;}i:1761469200;a:1:{i:0;i:2;}i:1761472800;a:1:{i:0;i:2;}i:1761476400;a:1:{i:0;i:1;}i:1761483600;a:1:{i:0;i:1;}i:1761487200;a:1:{i:0;i:1;}i:1761498000;a:1:{i:0;i:1;}i:1761512400;a:1:{i:0;i:3;}i:1761530400;a:1:{i:0;i:3;}i:1761534000;a:1:{i:0;i:4;}i:1761537600;a:1:{i:0;i:2;}i:1761541200;a:1:{i:0;i:1;}i:1761544800;a:1:{i:0;i:1;}i:1761548400;a:1:{i:0;i:1;}i:1761559200;a:1:{i:0;i:1;}i:1761573600;a:1:{i:0;i:9;}i:1761577200;a:1:{i:0;i:8;}i:1761580800;a:1:{i:0;i:1;}i:1761584400;a:1:{i:0;i:2;}i:1761588000;a:1:{i:0;i:2;}i:1761595200;a:1:{i:0;i:1;}i:1761598800;a:1:{i:0;i:2;}i:1761602400;a:1:{i:0;i:3;}i:1761606000;a:1:{i:0;i:2;}i:1761609600;a:1:{i:0;i:2;}i:1761613200;a:1:{i:0;i:2;}i:1761620400;a:1:{i:0;i:1;}i:1761624000;a:1:{i:0;i:1;}i:1761627600;a:1:{i:0;i:1;}i:1761634800;a:1:{i:0;i:1;}i:1761638400;a:1:{i:0;i:5;}i:1761642000;a:1:{i:0;i:3;}i:1761645600;a:1:{i:0;i:1;}i:1761649200;a:1:{i:0;i:2;}i:1761652800;a:1:{i:0;i:1;}i:1761660000;a:1:{i:0;i:4;}i:1761663600;a:1:{i:0;i:3;}i:1761667200;a:1:{i:0;i:1;}i:1761670800;a:1:{i:0;i:2;}i:1761674400;a:1:{i:0;i:1;}i:1761678000;a:1:{i:0;i:1;}i:1761681600;a:1:{i:0;i:2;}i:1761685200;a:1:{i:0;i:2;}i:1761688800;a:1:{i:0;i:2;}i:1761692400;a:1:{i:0;i:5;}i:1761696000;a:1:{i:0;i:6;}i:1761699600;a:1:{i:0;i:1;}i:1761703200;a:1:{i:0;i:1;}i:1761706800;a:1:{i:0;i:3;}i:1761710400;a:1:{i:0;i:7;}i:1761714000;a:1:{i:0;i:1;}i:1761717600;a:1:{i:0;i:1;}i:1761721200;a:1:{i:0;i:2;}i:1761732000;a:1:{i:0;i:1;}i:1761735600;a:1:{i:0;i:1;}i:1761739200;a:1:{i:0;i:5;}i:1761742800;a:1:{i:0;i:1;}i:1761746400;a:1:{i:0;i:2;}i:1761753600;a:1:{i:0;i:1;}i:1761757200;a:1:{i:0;i:2;}i:1761760800;a:1:{i:0;i:2;}i:1761764400;a:1:{i:0;i:1;}i:1761768000;a:1:{i:0;i:3;}i:1761778800;a:1:{i:0;i:2;}i:1761786000;a:1:{i:0;i:1;}i:1761789600;a:1:{i:0;i:2;}i:1761793200;a:1:{i:0;i:4;}i:1761796800;a:1:{i:0;i:3;}i:1761800400;a:1:{i:0;i:2;}i:1761804000;a:1:{i:0;i:2;}i:1761811200;a:1:{i:0;i:2;}i:1761818400;a:1:{i:0;i:12;}i:1761822000;a:1:{i:0;i:3;}i:1761825600;a:1:{i:0;i:2;}i:1761829200;a:1:{i:0;i:1;}i:1761836400;a:1:{i:0;i:1;}i:1761840000;a:1:{i:0;i:2;}i:1761847200;a:1:{i:0;i:1;}i:1761858000;a:1:{i:0;i:1;}i:1761868800;a:1:{i:0;i:4;}i:1761901200;a:1:{i:0;i:1;}i:1761904800;a:1:{i:0;i:3;}i:1761908400;a:1:{i:0;i:1;}i:1761912000;a:1:{i:0;i:1;}i:1761922800;a:1:{i:0;i:2;}i:1761930000;a:1:{i:0;i:1;}i:1761933600;a:1:{i:0;i:1;}i:1761948000;a:1:{i:0;i:1;}i:1761980400;a:1:{i:0;i:1;}i:1761984000;a:1:{i:0;i:3;}i:1761987600;a:1:{i:0;i:3;}i:1762005600;a:1:{i:0;i:2;}i:1762009200;a:1:{i:0;i:1;}i:1762012800;a:1:{i:0;i:1;}i:1762020000;a:1:{i:0;i:4;}i:1762074000;a:1:{i:0;i:1;}i:1762077600;a:1:{i:0;i:1;}i:1762081200;a:1:{i:0;i:1;}i:1762084800;a:1:{i:0;i:1;}i:1762092000;a:1:{i:0;i:3;}i:1762095600;a:1:{i:0;i:1;}i:1762099200;a:1:{i:0;i:2;}i:1762102800;a:1:{i:0;i:83;}i:1762106400;a:1:{i:0;i:60;}i:1762110000;a:1:{i:0;i:50;}i:1762113600;a:1:{i:0;i:67;}i:1762128000;a:1:{i:0;i:1;}i:1762131600;a:1:{i:0;i:10;}i:1762135200;a:1:{i:0;i:1;}i:1762138800;a:1:{i:0;i:1;}i:1762142400;a:1:{i:0;i:1;}i:1762156800;a:1:{i:0;i:2;}i:1762160400;a:1:{i:0;i:1;}i:1762164000;a:1:{i:0;i:2;}i:1762167600;a:1:{i:0;i:2;}i:1762171200;a:1:{i:0;i:2;}i:1762174800;a:1:{i:0;i:3;}i:1762182000;a:1:{i:0;i:1;}i:1762185600;a:1:{i:0;i:2;}i:1762192800;a:1:{i:0;i:1;}i:1762203600;a:1:{i:0;i:3;}i:1762210800;a:1:{i:0;i:2;}i:1762214400;a:1:{i:0;i:6;}i:1762218000;a:1:{i:0;i:1;}i:1762225200;a:1:{i:0;i:2;}i:1762228800;a:1:{i:0;i:2;}i:1762232400;a:1:{i:0;i:3;}i:1762236000;a:1:{i:0;i:14;}i:1762239600;a:1:{i:0;i:7;}i:1762243200;a:1:{i:0;i:1;}i:1762250400;a:1:{i:0;i:9;}i:1762254000;a:1:{i:0;i:1;}i:1762257600;a:1:{i:0;i:1;}i:1762261200;a:1:{i:0;i:1;}i:1762264800;a:1:{i:0;i:25;}i:1762268400;a:1:{i:0;i:39;}i:1762272000;a:1:{i:0;i:15;}i:1762279200;a:1:{i:0;i:1;}i:1762286400;a:1:{i:0;i:3;}i:1762290000;a:1:{i:0;i:1;}i:1762297200;a:1:{i:0;i:2;}i:1762318800;a:1:{i:0;i:1;}i:1762351200;a:1:{i:0;i:1;}i:1762398000;a:1:{i:0;i:3;}i:1762423200;a:1:{i:0;i:1;}i:1762444800;a:1:{i:0;i:2;}i:1762455600;a:1:{i:0;i:1;}i:1762466400;a:1:{i:0;i:1;}i:1762509600;a:1:{i:0;i:1;}i:1762516800;a:1:{i:0;i:1;}i:1762531200;a:1:{i:0;i:1;}i:1762556400;a:1:{i:0;i:1;}i:1762563600;a:1:{i:0;i:1;}i:1762567200;a:1:{i:0;i:2;}i:1762570800;a:1:{i:0;i:1;}i:1762574400;a:1:{i:0;i:1;}i:1762578000;a:1:{i:0;i:2;}i:1762581600;a:1:{i:0;i:2;}i:1762585200;a:1:{i:0;i:2;}i:1762588800;a:1:{i:0;i:2;}i:1762592400;a:1:{i:0;i:2;}i:1762596000;a:1:{i:0;i:2;}i:1762599600;a:1:{i:0;i:2;}i:1762603200;a:1:{i:0;i:3;}i:1762606800;a:1:{i:0;i:2;}i:1762610400;a:1:{i:0;i:2;}i:1762614000;a:1:{i:0;i:2;}i:1762617600;a:1:{i:0;i:3;}i:1762621200;a:1:{i:0;i:3;}i:1762624800;a:1:{i:0;i:2;}i:1762646400;a:1:{i:0;i:1;}i:1762650000;a:1:{i:0;i:1;}i:1762657200;a:1:{i:0;i:1;}i:1762682400;a:1:{i:0;i:1;}i:1762732800;a:1:{i:0;i:1;}i:1762747200;a:1:{i:0;i:1;}i:1762758000;a:1:{i:0;i:8;}i:1762794000;a:1:{i:0;i:3;}i:1762808400;a:1:{i:0;i:2;}i:1762840800;a:1:{i:0;i:2;}i:1762912800;a:1:{i:0;i:1;}i:1762945200;a:1:{i:0;i:1;}i:1762956000;a:1:{i:0;i:1;}i:1762970400;a:1:{i:0;i:1;}i:1762981200;a:1:{i:0;i:1;}i:1762988400;a:1:{i:0;i:1;}i:1762992000;a:1:{i:0;i:2;}i:1763002800;a:1:{i:0;i:1;}i:1763006400;a:1:{i:0;i:1;}i:1763010000;a:1:{i:0;i:2;}i:1763020800;a:1:{i:0;i:1;}i:1763118000;a:1:{i:0;i:1;}i:1763121600;a:1:{i:0;i:2;}i:1763125200;a:1:{i:0;i:6;}i:1763179200;a:1:{i:0;i:5;}i:1763182800;a:1:{i:0;i:4;}i:1763186400;a:1:{i:0;i:5;}i:1763190000;a:1:{i:0;i:4;}i:1763193600;a:1:{i:0;i:4;}i:1763197200;a:1:{i:0;i:11;}i:1763200800;a:1:{i:0;i:7;}i:1763204400;a:1:{i:0;i:3;}i:1763208000;a:1:{i:0;i:3;}i:1763211600;a:1:{i:0;i:4;}i:1763215200;a:1:{i:0;i:4;}i:1763218800;a:1:{i:0;i:3;}i:1763222400;a:1:{i:0;i:3;}i:1763226000;a:1:{i:0;i:3;}i:1763229600;a:1:{i:0;i:4;}i:1763233200;a:1:{i:0;i:3;}i:1763236800;a:1:{i:0;i:4;}i:1763240400;a:1:{i:0;i:4;}i:1763244000;a:1:{i:0;i:3;}i:1763247600;a:1:{i:0;i:4;}i:1763251200;a:1:{i:0;i:4;}i:1763254800;a:1:{i:0;i:3;}i:1763258400;a:1:{i:0;i:4;}i:1763262000;a:1:{i:0;i:4;}i:1763265600;a:1:{i:0;i:5;}i:1763269200;a:1:{i:0;i:5;}i:1763272800;a:1:{i:0;i:4;}i:1763276400;a:1:{i:0;i:3;}i:1763380800;a:1:{i:0;i:3;}i:1763388000;a:1:{i:0;i:1;}i:1763391600;a:1:{i:0;i:1;}i:1763395200;a:1:{i:0;i:1;}i:1763398800;a:1:{i:0;i:1;}i:1763402400;a:1:{i:0;i:2;}i:1763406000;a:1:{i:0;i:1;}i:1763409600;a:1:{i:0;i:1;}i:1763420400;a:1:{i:0;i:1;}i:1763424000;a:1:{i:0;i:2;}i:1763449200;a:1:{i:0;i:1;}i:1763463600;a:1:{i:0;i:1;}i:1763467200;a:1:{i:0;i:1;}i:1763470800;a:1:{i:0;i:2;}i:1763474400;a:1:{i:0;i:2;}i:1763478000;a:1:{i:0;i:7;}i:1763485200;a:1:{i:0;i:5;}i:1763488800;a:1:{i:0;i:9;}i:1763492400;a:1:{i:0;i:1;}i:1763517600;a:1:{i:0;i:1;}i:1763553600;a:1:{i:0;i:1;}i:1763557200;a:1:{i:0;i:1;}i:1763564400;a:1:{i:0;i:1;}i:1763568000;a:1:{i:0;i:1;}i:1763607600;a:1:{i:0;i:1;}i:1763625600;a:1:{i:0;i:3;}i:1763629200;a:1:{i:0;i:2;}i:1763632800;a:1:{i:0;i:2;}i:1763636400;a:1:{i:0;i:1;}i:1763640000;a:1:{i:0;i:1;}i:1763643600;a:1:{i:0;i:8;}i:1763647200;a:1:{i:0;i:4;}i:1763658000;a:1:{i:0;i:1;}i:1763661600;a:1:{i:0;i:2;}i:1763665200;a:1:{i:0;i:1;}i:1763668800;a:1:{i:0;i:1;}i:1763683200;a:1:{i:0;i:1;}i:1763686800;a:1:{i:0;i:2;}i:1763690400;a:1:{i:0;i:1;}i:1763701200;a:1:{i:0;i:3;}i:1763712000;a:1:{i:0;i:2;}i:1763715600;a:1:{i:0;i:1;}i:1763726400;a:1:{i:0;i:1;}i:1763744400;a:1:{i:0;i:1;}i:1763748000;a:1:{i:0;i:1;}i:1763755200;a:1:{i:0;i:1;}i:1763758800;a:1:{i:0;i:2;}i:1763773200;a:1:{i:0;i:2;}i:1763780400;a:1:{i:0;i:5;}i:1763784000;a:1:{i:0;i:2;}i:1763787600;a:1:{i:0;i:2;}i:1763791200;a:1:{i:0;i:1;}i:1763794800;a:1:{i:0;i:1;}i:1763802000;a:1:{i:0;i:1;}i:1763812800;a:1:{i:0;i:7;}i:1763816400;a:1:{i:0;i:5;}i:1763823600;a:1:{i:0;i:1;}i:1763830800;a:1:{i:0;i:1;}i:1763834400;a:1:{i:0;i:2;}i:1763838000;a:1:{i:0;i:1;}i:1763852400;a:1:{i:0;i:1;}i:1763856000;a:1:{i:0;i:2;}i:1763863200;a:1:{i:0;i:2;}i:1763866800;a:1:{i:0;i:1;}i:1763870400;a:1:{i:0;i:1;}i:1763877600;a:1:{i:0;i:1;}i:1763881200;a:1:{i:0;i:2;}i:1763892000;a:1:{i:0;i:6;}i:1763906400;a:1:{i:0;i:2;}i:1763910000;a:1:{i:0;i:3;}i:1763917200;a:1:{i:0;i:1;}i:1763924400;a:1:{i:0;i:1;}i:1763938800;a:1:{i:0;i:1;}i:1763946000;a:1:{i:0;i:1;}i:1763953200;a:1:{i:0;i:1;}i:1763960400;a:1:{i:0;i:1;}i:1763964000;a:1:{i:0;i:1;}i:1763971200;a:1:{i:0;i:1;}i:1763974800;a:1:{i:0;i:1;}i:1763985600;a:1:{i:0;i:1;}i:1764003600;a:1:{i:0;i:1;}i:1764025200;a:1:{i:0;i:1;}i:1764032400;a:1:{i:0;i:2;}i:1764039600;a:1:{i:0;i:1;}i:1764054000;a:1:{i:0;i:1;}i:1764057600;a:1:{i:0;i:1;}i:1764061200;a:1:{i:0;i:1;}i:1764064800;a:1:{i:0;i:1;}i:1764068400;a:1:{i:0;i:1;}i:1764072000;a:1:{i:0;i:2;}i:1764075600;a:1:{i:0;i:1;}i:1764079200;a:1:{i:0;i:1;}i:1764082800;a:1:{i:0;i:2;}i:1764086400;a:1:{i:0;i:2;}i:1764090000;a:1:{i:0;i:7;}i:1764097200;a:1:{i:0;i:2;}i:1764104400;a:1:{i:0;i:2;}i:1764115200;a:1:{i:0;i:2;}i:1764118800;a:1:{i:0;i:1;}i:1764122400;a:1:{i:0;i:2;}i:1764126000;a:1:{i:0;i:2;}i:1764129600;a:1:{i:0;i:1;}i:1764136800;a:1:{i:0;i:1;}i:1764144000;a:1:{i:0;i:2;}i:1764147600;a:1:{i:0;i:4;}i:1764154800;a:1:{i:0;i:1;}i:1764158400;a:1:{i:0;i:1;}i:1764162000;a:1:{i:0;i:2;}i:1764165600;a:1:{i:0;i:3;}i:1764169200;a:1:{i:0;i:1;}i:1764172800;a:1:{i:0;i:2;}i:1764180000;a:1:{i:0;i:1;}i:1764183600;a:1:{i:0;i:3;}i:1764190800;a:1:{i:0;i:2;}i:1764194400;a:1:{i:0;i:2;}i:1764198000;a:1:{i:0;i:3;}i:1764205200;a:1:{i:0;i:3;}i:1764208800;a:1:{i:0;i:2;}i:1764212400;a:1:{i:0;i:3;}i:1764216000;a:1:{i:0;i:3;}i:1764219600;a:1:{i:0;i:1;}i:1764223200;a:1:{i:0;i:1;}i:1764234000;a:1:{i:0;i:9;}i:1764241200;a:1:{i:0;i:16;}i:1764244800;a:1:{i:0;i:3;}i:1764248400;a:1:{i:0;i:2;}i:1764252000;a:1:{i:0;i:2;}i:1764255600;a:1:{i:0;i:3;}i:1764259200;a:1:{i:0;i:2;}i:1764266400;a:1:{i:0;i:2;}i:1764270000;a:1:{i:0;i:2;}i:1764277200;a:1:{i:0;i:2;}i:1764280800;a:1:{i:0;i:1;}i:1764284400;a:1:{i:0;i:2;}i:1764291600;a:1:{i:0;i:1;}i:1764295200;a:1:{i:0;i:2;}i:1764302400;a:1:{i:0;i:2;}i:1764309600;a:1:{i:0;i:3;}i:1764316800;a:1:{i:0;i:1;}i:1764320400;a:1:{i:0;i:1;}i:1764324000;a:1:{i:0;i:2;}i:1764327600;a:1:{i:0;i:3;}i:1764331200;a:1:{i:0;i:2;}i:1764334800;a:1:{i:0;i:2;}i:1764338400;a:1:{i:0;i:3;}i:1764342000;a:1:{i:0;i:1;}i:1764345600;a:1:{i:0;i:3;}i:1764349200;a:1:{i:0;i:1;}i:1764352800;a:1:{i:0;i:2;}i:1764363600;a:1:{i:0;i:2;}i:1764367200;a:1:{i:0;i:1;}i:1764370800;a:1:{i:0;i:1;}i:1764374400;a:1:{i:0;i:1;}i:1764381600;a:1:{i:0;i:1;}i:1764388800;a:1:{i:0;i:1;}i:1764396000;a:1:{i:0;i:3;}i:1764399600;a:1:{i:0;i:1;}i:1764403200;a:1:{i:0;i:1;}i:1764421200;a:1:{i:0;i:2;}i:1764424800;a:1:{i:0;i:1;}i:1764446400;a:1:{i:0;i:1;}i:1764450000;a:1:{i:0;i:1;}i:1764457200;a:1:{i:0;i:1;}i:1764460800;a:1:{i:0;i:1;}i:1764464400;a:1:{i:0;i:1;}i:1764471600;a:1:{i:0;i:2;}i:1764475200;a:1:{i:0;i:1;}i:1764478800;a:1:{i:0;i:2;}i:1764482400;a:1:{i:0;i:2;}i:1764489600;a:1:{i:0;i:1;}i:1764496800;a:1:{i:0;i:1;}i:1764504000;a:1:{i:0;i:1;}i:1764507600;a:1:{i:0;i:1;}i:1764511200;a:1:{i:0;i:1;}i:1764525600;a:1:{i:0;i:1;}i:1764529200;a:1:{i:0;i:1;}i:1764532800;a:1:{i:0;i:1;}i:1764540000;a:1:{i:0;i:1;}i:1764543600;a:1:{i:0;i:2;}i:1764547200;a:1:{i:0;i:2;}i:1764558000;a:1:{i:0;i:1;}i:1764565200;a:1:{i:0;i:2;}i:1764568800;a:1:{i:0;i:1;}i:1764576000;a:1:{i:0;i:2;}i:1764579600;a:1:{i:0;i:3;}i:1764583200;a:1:{i:0;i:1;}i:1764594000;a:1:{i:0;i:2;}i:1764597600;a:1:{i:0;i:3;}i:1764601200;a:1:{i:0;i:1;}i:1764615600;a:1:{i:0;i:1;}i:1764619200;a:1:{i:0;i:1;}i:1764622800;a:1:{i:0;i:1;}i:1764637200;a:1:{i:0;i:3;}i:1764640800;a:1:{i:0;i:8;}i:1764644400;a:1:{i:0;i:3;}i:1764648000;a:1:{i:0;i:1;}i:1764655200;a:1:{i:0;i:4;}i:1764658800;a:1:{i:0;i:1;}i:1764662400;a:1:{i:0;i:2;}i:1764669600;a:1:{i:0;i:1;}i:1764673200;a:1:{i:0;i:2;}i:1764676800;a:1:{i:0;i:2;}i:1764680400;a:1:{i:0;i:2;}i:1764684000;a:1:{i:0;i:2;}i:1764687600;a:1:{i:0;i:1;}i:1764691200;a:1:{i:0;i:2;}i:1764694800;a:1:{i:0;i:2;}i:1764698400;a:1:{i:0;i:1;}i:1764702000;a:1:{i:0;i:3;}i:1764705600;a:1:{i:0;i:2;}i:1764709200;a:1:{i:0;i:1;}i:1764720000;a:1:{i:0;i:1;}i:1764723600;a:1:{i:0;i:1;}i:1764730800;a:1:{i:0;i:6;}i:1764734400;a:1:{i:0;i:4;}i:1764741600;a:1:{i:0;i:2;}i:1764745200;a:1:{i:0;i:1;}i:1764748800;a:1:{i:0;i:1;}i:1764763200;a:1:{i:0;i:1;}i:1764781200;a:1:{i:0;i:3;}i:1764788400;a:1:{i:0;i:1;}i:1764795600;a:1:{i:0;i:1;}i:1764799200;a:1:{i:0;i:3;}i:1764802800;a:1:{i:0;i:1;}i:1764806400;a:1:{i:0;i:1;}i:1764813600;a:1:{i:0;i:1;}i:1764817200;a:1:{i:0;i:1;}i:1764828000;a:1:{i:0;i:1;}i:1764831600;a:1:{i:0;i:1;}i:1764835200;a:1:{i:0;i:1;}i:1764838800;a:1:{i:0;i:1;}i:1764842400;a:1:{i:0;i:2;}i:1764849600;a:1:{i:0;i:1;}i:1764860400;a:1:{i:0;i:2;}i:1764864000;a:1:{i:0;i:7;}i:1764867600;a:1:{i:0;i:3;}i:1764871200;a:1:{i:0;i:1;}i:1764878400;a:1:{i:0;i:2;}i:1764882000;a:1:{i:0;i:1;}i:1764903600;a:1:{i:0;i:1;}i:1764910800;a:1:{i:0;i:1;}i:1764914400;a:1:{i:0;i:1;}i:1764928800;a:1:{i:0;i:1;}i:1764957600;a:1:{i:0;i:1;}i:1764961200;a:1:{i:0;i:1;}i:1764964800;a:1:{i:0;i:1;}i:1764972000;a:1:{i:0;i:4;}i:1764975600;a:1:{i:0;i:1;}i:1765011600;a:1:{i:0;i:1;}i:1765015200;a:1:{i:0;i:1;}i:1765026000;a:1:{i:0;i:1;}i:1765036800;a:1:{i:0;i:2;}i:1765040400;a:1:{i:0;i:1;}i:1765047600;a:1:{i:0;i:1;}i:1765051200;a:1:{i:0;i:1;}i:1765080000;a:1:{i:0;i:1;}i:1765083600;a:1:{i:0;i:2;}i:1765087200;a:1:{i:0;i:1;}i:1765108800;a:1:{i:0;i:1;}i:1765159200;a:1:{i:0;i:1;}i:1765166400;a:1:{i:0;i:1;}i:1765170000;a:1:{i:0;i:1;}i:1765173600;a:1:{i:0;i:1;}i:1765177200;a:1:{i:0;i:1;}i:1765198800;a:1:{i:0;i:1;}i:1765249200;a:1:{i:0;i:1;}i:1765260000;a:1:{i:0;i:1;}i:1765278000;a:1:{i:0;i:1;}i:1765288800;a:1:{i:0;i:1;}i:1765303200;a:1:{i:0;i:1;}i:1765321200;a:1:{i:0;i:1;}i:1765342800;a:1:{i:0;i:1;}i:1765350000;a:1:{i:0;i:2;}i:1765353600;a:1:{i:0;i:2;}i:1765364400;a:1:{i:0;i:1;}i:1765382400;a:1:{i:0;i:1;}i:1765386000;a:1:{i:0;i:1;}i:1765389600;a:1:{i:0;i:1;}i:1765393200;a:1:{i:0;i:3;}i:1765400400;a:1:{i:0;i:1;}i:1765404000;a:1:{i:0;i:1;}i:1765407600;a:1:{i:0;i:1;}i:1765411200;a:1:{i:0;i:1;}i:1765418400;a:1:{i:0;i:3;}i:1765422000;a:1:{i:0;i:2;}i:1765425600;a:1:{i:0;i:2;}i:1765429200;a:1:{i:0;i:1;}i:1765432800;a:1:{i:0;i:1;}i:1765436400;a:1:{i:0;i:4;}i:1765440000;a:1:{i:0;i:1;}i:1765450800;a:1:{i:0;i:1;}i:1765461600;a:1:{i:0;i:1;}i:1765465200;a:1:{i:0;i:1;}i:1765468800;a:1:{i:0;i:3;}i:1765476000;a:1:{i:0;i:1;}i:1765479600;a:1:{i:0;i:1;}i:1765486800;a:1:{i:0;i:1;}i:1765508400;a:1:{i:0;i:1;}i:1765519200;a:1:{i:0;i:2;}i:1765522800;a:1:{i:0;i:1;}i:1765526400;a:1:{i:0;i:1;}i:1765530000;a:1:{i:0;i:1;}i:1765533600;a:1:{i:0;i:3;}i:1765540800;a:1:{i:0;i:1;}i:1765544400;a:1:{i:0;i:1;}i:1765551600;a:1:{i:0;i:1;}i:1765566000;a:1:{i:0;i:1;}i:1765576800;a:1:{i:0;i:1;}i:1765616400;a:1:{i:0;i:2;}i:1765630800;a:1:{i:0;i:2;}i:1765634400;a:1:{i:0;i:1;}i:1765638000;a:1:{i:0;i:2;}i:1765652400;a:1:{i:0;i:2;}i:1765663200;a:1:{i:0;i:1;}i:1765670400;a:1:{i:0;i:1;}i:1765677600;a:1:{i:0;i:1;}i:1765681200;a:1:{i:0;i:1;}i:1765688400;a:1:{i:0;i:1;}i:1765692000;a:1:{i:0;i:1;}i:1765695600;a:1:{i:0;i:1;}i:1765702800;a:1:{i:0;i:2;}i:1765710000;a:1:{i:0;i:1;}i:1765717200;a:1:{i:0;i:1;}i:1765720800;a:1:{i:0;i:1;}i:1765724400;a:1:{i:0;i:1;}i:1765731600;a:1:{i:0;i:2;}i:1765738800;a:1:{i:0;i:1;}i:1765742400;a:1:{i:0;i:2;}i:1765746000;a:1:{i:0;i:1;}i:1765749600;a:1:{i:0;i:2;}i:1765753200;a:1:{i:0;i:1;}i:1765760400;a:1:{i:0;i:1;}i:1765764000;a:1:{i:0;i:1;}i:1765767600;a:1:{i:0;i:1;}i:1765774800;a:1:{i:0;i:1;}i:1765782000;a:1:{i:0;i:1;}i:1765789200;a:1:{i:0;i:1;}i:1765796400;a:1:{i:0;i:1;}i:1765800000;a:1:{i:0;i:2;}i:1765807200;a:1:{i:0;i:4;}i:1765814400;a:1:{i:0;i:1;}i:1765818000;a:1:{i:0;i:1;}i:1765821600;a:1:{i:0;i:5;}i:1765825200;a:1:{i:0;i:1;}i:1765828800;a:1:{i:0;i:4;}i:1765832400;a:1:{i:0;i:1;}i:1765839600;a:1:{i:0;i:5;}i:1765843200;a:1:{i:0;i:1;}i:1765846800;a:1:{i:0;i:5;}i:1765850400;a:1:{i:0;i:4;}i:1765854000;a:1:{i:0;i:2;}i:1765857600;a:1:{i:0;i:2;}i:1765864800;a:1:{i:0;i:1;}i:1765868400;a:1:{i:0;i:1;}i:1765879200;a:1:{i:0;i:5;}i:1765882800;a:1:{i:0;i:6;}i:1765886400;a:1:{i:0;i:6;}i:1765890000;a:1:{i:0;i:5;}i:1765893600;a:1:{i:0;i:6;}i:1765897200;a:1:{i:0;i:6;}i:1765900800;a:1:{i:0;i:10;}i:1765904400;a:1:{i:0;i:3;}i:1765908000;a:1:{i:0;i:3;}i:1765911600;a:1:{i:0;i:6;}i:1765915200;a:1:{i:0;i:7;}i:1765918800;a:1:{i:0;i:8;}i:1765922400;a:1:{i:0;i:14;}i:1765926000;a:1:{i:0;i:9;}i:1765929600;a:1:{i:0;i:11;}i:1765933200;a:1:{i:0;i:9;}i:1765936800;a:1:{i:0;i:10;}i:1765940400;a:1:{i:0;i:13;}i:1765944000;a:1:{i:0;i:14;}i:1765947600;a:1:{i:0;i:11;}i:1765951200;a:1:{i:0;i:10;}i:1765954800;a:1:{i:0;i:13;}i:1765958400;a:1:{i:0;i:11;}i:1765962000;a:1:{i:0;i:12;}i:1765965600;a:1:{i:0;i:9;}i:1765969200;a:1:{i:0;i:11;}i:1765972800;a:1:{i:0;i:7;}i:1765976400;a:1:{i:0;i:7;}i:1765980000;a:1:{i:0;i:9;}i:1765983600;a:1:{i:0;i:12;}i:1765987200;a:1:{i:0;i:8;}i:1765990800;a:1:{i:0;i:29;}i:1765994400;a:1:{i:0;i:9;}i:1765998000;a:1:{i:0;i:13;}i:1766001600;a:1:{i:0;i:10;}i:1766005200;a:1:{i:0;i:15;}i:1766008800;a:1:{i:0;i:12;}i:1766012400;a:1:{i:0;i:9;}i:1766016000;a:1:{i:0;i:11;}i:1766019600;a:1:{i:0;i:10;}i:1766023200;a:1:{i:0;i:7;}i:1766026800;a:1:{i:0;i:8;}i:1766030400;a:1:{i:0;i:8;}i:1766034000;a:1:{i:0;i:7;}i:1766037600;a:1:{i:0;i:5;}i:1766041200;a:1:{i:0;i:7;}i:1766044800;a:1:{i:0;i:7;}i:1766048400;a:1:{i:0;i:7;}i:1766052000;a:1:{i:0;i:77;}i:1766055600;a:1:{i:0;i:80;}i:1766059200;a:1:{i:0;i:79;}i:1766062800;a:1:{i:0;i:60;}i:1766066400;a:1:{i:0;i:60;}i:1766070000;a:1:{i:0;i:37;}i:1766073600;a:1:{i:0;i:57;}i:1766077200;a:1:{i:0;i:52;}i:1766080800;a:1:{i:0;i:63;}i:1766084400;a:1:{i:0;i:10;}i:1766088000;a:1:{i:0;i:7;}i:1766091600;a:1:{i:0;i:8;}i:1766095200;a:1:{i:0;i:7;}i:1766098800;a:1:{i:0;i:7;}i:1766102400;a:1:{i:0;i:8;}i:1766106000;a:1:{i:0;i:5;}i:1766109600;a:1:{i:0;i:1;}i:1766120400;a:1:{i:0;i:1;}i:1766142000;a:1:{i:0;i:1;}i:1766145600;a:1:{i:0;i:2;}i:1766152800;a:1:{i:0;i:1;}i:1766156400;a:1:{i:0;i:8;}i:1766160000;a:1:{i:0;i:7;}i:1766167200;a:1:{i:0;i:2;}i:1766170800;a:1:{i:0;i:3;}i:1766188800;a:1:{i:0;i:1;}i:1766214000;a:1:{i:0;i:1;}i:1766217600;a:1:{i:0;i:1;}i:1766228400;a:1:{i:0;i:2;}i:1766235600;a:1:{i:0;i:1;}i:1766239200;a:1:{i:0;i:1;}i:1766242800;a:1:{i:0;i:1;}i:1766246400;a:1:{i:0;i:1;}i:1766250000;a:1:{i:0;i:10;}i:1766260800;a:1:{i:0;i:2;}i:1766268000;a:1:{i:0;i:2;}i:1766275200;a:1:{i:0;i:1;}i:1766278800;a:1:{i:0;i:3;}i:1766282400;a:1:{i:0;i:1;}i:1766289600;a:1:{i:0;i:3;}i:1766293200;a:1:{i:0;i:1;}i:1766296800;a:1:{i:0;i:1;}i:1766300400;a:1:{i:0;i:2;}i:1766304000;a:1:{i:0;i:3;}i:1766307600;a:1:{i:0;i:16;}i:1766311200;a:1:{i:0;i:13;}i:1766314800;a:1:{i:0;i:18;}i:1766318400;a:1:{i:0;i:31;}i:1766322000;a:1:{i:0;i:33;}i:1766325600;a:1:{i:0;i:14;}i:1766329200;a:1:{i:0;i:26;}i:1766332800;a:1:{i:0;i:21;}i:1766336400;a:1:{i:0;i:15;}i:1766340000;a:1:{i:0;i:21;}i:1766343600;a:1:{i:0;i:17;}i:1766347200;a:1:{i:0;i:20;}i:1766350800;a:1:{i:0;i:11;}i:1766354400;a:1:{i:0;i:18;}i:1766358000;a:1:{i:0;i:7;}i:1766361600;a:1:{i:0;i:20;}i:1766365200;a:1:{i:0;i:12;}i:1766368800;a:1:{i:0;i:10;}i:1766372400;a:1:{i:0;i:21;}i:1766376000;a:1:{i:0;i:15;}i:1766379600;a:1:{i:0;i:15;}i:1766383200;a:1:{i:0;i:14;}i:1766386800;a:1:{i:0;i:8;}i:1766390400;a:1:{i:0;i:31;}i:1766394000;a:1:{i:0;i:12;}i:1766397600;a:1:{i:0;i:6;}i:1766401200;a:1:{i:0;i:24;}i:1766404800;a:1:{i:0;i:14;}i:1766408400;a:1:{i:0;i:26;}i:1766412000;a:1:{i:0;i:11;}i:1766415600;a:1:{i:0;i:27;}i:1766419200;a:1:{i:0;i:10;}i:1766422800;a:1:{i:0;i:16;}i:1766426400;a:1:{i:0;i:14;}i:1766430000;a:1:{i:0;i:14;}i:1766433600;a:1:{i:0;i:25;}i:1766437200;a:1:{i:0;i:14;}i:1766440800;a:1:{i:0;i:22;}i:1766444400;a:1:{i:0;i:18;}i:1766448000;a:1:{i:0;i:26;}i:1766451600;a:1:{i:0;i:14;}i:1766455200;a:1:{i:0;i:9;}i:1766458800;a:1:{i:0;i:28;}i:1766462400;a:1:{i:0;i:14;}i:1766466000;a:1:{i:0;i:21;}i:1766469600;a:1:{i:0;i:14;}i:1766473200;a:1:{i:0;i:37;}i:1766476800;a:1:{i:0;i:8;}i:1766480400;a:1:{i:0;i:6;}i:1766484000;a:1:{i:0;i:6;}i:1766487600;a:1:{i:0;i:2;}i:1766491200;a:1:{i:0;i:3;}i:1766494800;a:1:{i:0;i:6;}i:1766498400;a:1:{i:0;i:5;}i:1766502000;a:1:{i:0;i:4;}i:1766505600;a:1:{i:0;i:4;}i:1766509200;a:1:{i:0;i:3;}i:1766512800;a:1:{i:0;i:2;}i:1766516400;a:1:{i:0;i:2;}i:1766520000;a:1:{i:0;i:10;}i:1766523600;a:1:{i:0;i:6;}i:1766527200;a:1:{i:0;i:12;}i:1766530800;a:1:{i:0;i:6;}i:1766534400;a:1:{i:0;i:9;}i:1766538000;a:1:{i:0;i:9;}i:1766541600;a:1:{i:0;i:12;}i:1766545200;a:1:{i:0;i:4;}i:1766548800;a:1:{i:0;i:16;}i:1766552400;a:1:{i:0;i:7;}i:1766556000;a:1:{i:0;i:36;}i:1766559600;a:1:{i:0;i:82;}i:1766563200;a:1:{i:0;i:13;}i:1766566800;a:1:{i:0;i:3;}i:1766570400;a:1:{i:0;i:13;}i:1766577600;a:1:{i:0;i:6;}i:1766584800;a:1:{i:0;i:6;}i:1766595600;a:1:{i:0;i:6;}i:1766602800;a:1:{i:0;i:11;}i:1766610000;a:1:{i:0;i:4;}i:1766617200;a:1:{i:0;i:9;}i:1766628000;a:1:{i:0;i:7;}i:1766635200;a:1:{i:0;i:8;}i:1766642400;a:1:{i:0;i:1;}i:1766649600;a:1:{i:0;i:8;}i:1766653200;a:1:{i:0;i:4;}i:1766656800;a:1:{i:0;i:2;}i:1766660400;a:1:{i:0;i:2;}i:1766692800;a:1:{i:0;i:2;}i:1766718000;a:1:{i:0;i:10;}i:1766725200;a:1:{i:0;i:3;}i:1766754000;a:1:{i:0;i:1;}i:1766772000;a:1:{i:0;i:1;}i:1766779200;a:1:{i:0;i:2;}i:1766782800;a:1:{i:0;i:6;}i:1766786400;a:1:{i:0;i:1;}i:1766815200;a:1:{i:0;i:9;}i:1766822400;a:1:{i:0;i:6;}i:1766829600;a:1:{i:0;i:2;}i:1766836800;a:1:{i:0;i:2;}i:1766851200;a:1:{i:0;i:1;}i:1766854800;a:1:{i:0;i:9;}i:1766865600;a:1:{i:0;i:3;}i:1766876400;a:1:{i:0;i:1;}i:1766880000;a:1:{i:0;i:9;}i:1766883600;a:1:{i:0;i:1;}i:1766887200;a:1:{i:0;i:1;}i:1766898000;a:1:{i:0;i:1;}i:1766905200;a:1:{i:0;i:1;}i:1766908800;a:1:{i:0;i:9;}i:1766916000;a:1:{i:0;i:6;}i:1766923200;a:1:{i:0;i:14;}i:1766930400;a:1:{i:0;i:1;}i:1766934000;a:1:{i:0;i:5;}i:1766941200;a:1:{i:0;i:7;}i:1766944800;a:1:{i:0;i:1;}i:1766959200;a:1:{i:0;i:10;}i:1766984400;a:1:{i:0;i:14;}i:1766991600;a:1:{i:0;i:1;}i:1767042000;a:1:{i:0;i:2;}i:1767045600;a:1:{i:0;i:8;}i:1767049200;a:1:{i:0;i:3;}i:1767060000;a:1:{i:0;i:9;}i:1767074400;a:1:{i:0;i:1;}i:1767139200;a:1:{i:0;i:1;}i:1767142800;a:1:{i:0;i:1;}i:1767157200;a:1:{i:0;i:1;}i:1767164400;a:1:{i:0;i:5;}i:1767168000;a:1:{i:0;i:4;}i:1767171600;a:1:{i:0;i:5;}i:1767175200;a:1:{i:0;i:7;}i:1767178800;a:1:{i:0;i:5;}i:1767182400;a:1:{i:0;i:6;}i:1767186000;a:1:{i:0;i:11;}i:1767189600;a:1:{i:0;i:10;}i:1767193200;a:1:{i:0;i:4;}i:1767196800;a:1:{i:0;i:6;}i:1767200400;a:1:{i:0;i:4;}i:1767204000;a:1:{i:0;i:4;}i:1767207600;a:1:{i:0;i:5;}i:1767211200;a:1:{i:0;i:4;}i:1767214800;a:1:{i:0;i:5;}i:1767218400;a:1:{i:0;i:4;}i:1767222000;a:1:{i:0;i:5;}i:1767225600;a:1:{i:0;i:5;}i:1767229200;a:1:{i:0;i:4;}i:1767232800;a:1:{i:0;i:4;}i:1767236400;a:1:{i:0;i:5;}i:1767240000;a:1:{i:0;i:4;}i:1767243600;a:1:{i:0;i:4;}i:1767247200;a:1:{i:0;i:5;}i:1767250800;a:1:{i:0;i:1;}i:1767254400;a:1:{i:0;i:1;}i:1767258000;a:1:{i:0;i:1;}i:1767261600;a:1:{i:0;i:2;}i:1767286800;a:1:{i:0;i:2;}i:1767315600;a:1:{i:0;i:1;}i:1767337200;a:1:{i:0;i:1;}i:1767344400;a:1:{i:0;i:2;}i:1767362400;a:1:{i:0;i:1;}i:1767369600;a:1:{i:0;i:1;}i:1767387600;a:1:{i:0;i:14;}i:1767409200;a:1:{i:0;i:1;}i:1767427200;a:1:{i:0;i:1;}i:1767441600;a:1:{i:0;i:1;}i:1767445200;a:1:{i:0;i:1;}i:1767452400;a:1:{i:0;i:10;}i:1767459600;a:1:{i:0;i:1;}i:1767463200;a:1:{i:0;i:1;}i:1767466800;a:1:{i:0;i:1;}i:1767470400;a:1:{i:0;i:18;}i:1767477600;a:1:{i:0;i:3;}i:1767481200;a:1:{i:0;i:6;}i:1767499200;a:1:{i:0;i:18;}i:1767506400;a:1:{i:0;i:1;}i:1767517200;a:1:{i:0;i:1;}i:1767582000;a:1:{i:0;i:1;}i:1767603600;a:1:{i:0;i:1;}i:1767614400;a:1:{i:0;i:14;}i:1767618000;a:1:{i:0;i:3;}i:1767621600;a:1:{i:0;i:13;}i:1767625200;a:1:{i:0;i:1;}i:1767628800;a:1:{i:0;i:2;}i:1767632400;a:1:{i:0;i:2;}i:1767636000;a:1:{i:0;i:37;}i:1767639600;a:1:{i:0;i:2;}i:1767643200;a:1:{i:0;i:2;}i:1767654000;a:1:{i:0;i:2;}i:1767661200;a:1:{i:0;i:2;}i:1767664800;a:1:{i:0;i:1;}i:1767668400;a:1:{i:0;i:1;}i:1767672000;a:1:{i:0;i:1;}i:1767679200;a:1:{i:0;i:1;}i:1767682800;a:1:{i:0;i:2;}i:1767686400;a:1:{i:0;i:1;}i:1767690000;a:1:{i:0;i:3;}i:1767693600;a:1:{i:0;i:35;}i:1767697200;a:1:{i:0;i:3;}i:1767700800;a:1:{i:0;i:4;}i:1767704400;a:1:{i:0;i:3;}i:1767708000;a:1:{i:0;i:22;}i:1767711600;a:1:{i:0;i:4;}i:1767715200;a:1:{i:0;i:1;}i:1767718800;a:1:{i:0;i:3;}i:1767722400;a:1:{i:0;i:9;}i:1767726000;a:1:{i:0;i:3;}i:1767754800;a:1:{i:0;i:1;}i:1767769200;a:1:{i:0;i:2;}i:1767772800;a:1:{i:0;i:3;}i:1767776400;a:1:{i:0;i:1;}i:1767780000;a:1:{i:0;i:26;}i:1767783600;a:1:{i:0;i:2;}i:1767787200;a:1:{i:0;i:3;}i:1767790800;a:1:{i:0;i:3;}i:1767794400;a:1:{i:0;i:10;}i:1767798000;a:1:{i:0;i:1;}i:1767808800;a:1:{i:0;i:9;}i:1767812400;a:1:{i:0;i:1;}i:1767816000;a:1:{i:0;i:1;}i:1767819600;a:1:{i:0;i:8;}i:1767823200;a:1:{i:0;i:8;}i:1767826800;a:1:{i:0;i:1;}i:1767830400;a:1:{i:0;i:1;}i:1767834000;a:1:{i:0;i:1;}i:1767837600;a:1:{i:0;i:20;}i:1767844800;a:1:{i:0;i:2;}i:1767848400;a:1:{i:0;i:1;}i:1767852000;a:1:{i:0;i:9;}i:1767855600;a:1:{i:0;i:2;}i:1767859200;a:1:{i:0;i:5;}i:1767862800;a:1:{i:0;i:3;}i:1767866400;a:1:{i:0;i:20;}i:1767870000;a:1:{i:0;i:4;}i:1767873600;a:1:{i:0;i:2;}i:1767877200;a:1:{i:0;i:16;}i:1767880800;a:1:{i:0;i:15;}i:1767884400;a:1:{i:0;i:27;}i:1767888000;a:1:{i:0;i:2;}i:1767891600;a:1:{i:0;i:29;}i:1767895200;a:1:{i:0;i:12;}i:1767898800;a:1:{i:0;i:30;}i:1767902400;a:1:{i:0;i:3;}i:1767906000;a:1:{i:0;i:25;}i:1767909600;a:1:{i:0;i:13;}i:1767913200;a:1:{i:0;i:24;}i:1767916800;a:1:{i:0;i:2;}i:1767920400;a:1:{i:0;i:26;}i:1767924000;a:1:{i:0;i:1;}i:1767927600;a:1:{i:0;i:29;}i:1767931200;a:1:{i:0;i:1;}i:1767934800;a:1:{i:0;i:12;}i:1767938400;a:1:{i:0;i:13;}i:1767942000;a:1:{i:0;i:24;}i:1767945600;a:1:{i:0;i:8;}i:1767949200;a:1:{i:0;i:1;}i:1767952800;a:1:{i:0;i:1;}i:1767956400;a:1:{i:0;i:3;}i:1767960000;a:1:{i:0;i:9;}i:1767963600;a:1:{i:0;i:2;}i:1767967200;a:1:{i:0;i:3;}i:1767970800;a:1:{i:0;i:3;}i:1767974400;a:1:{i:0;i:1;}i:1767978000;a:1:{i:0;i:4;}i:1767981600;a:1:{i:0;i:7;}i:1767985200;a:1:{i:0;i:4;}i:1767988800;a:1:{i:0;i:3;}i:1767992400;a:1:{i:0;i:1;}i:1767996000;a:1:{i:0;i:2;}i:1767999600;a:1:{i:0;i:1;}i:1768003200;a:1:{i:0;i:1;}i:1768006800;a:1:{i:0;i:3;}i:1768010400;a:1:{i:0;i:1;}i:1768014000;a:1:{i:0;i:1;}i:1768017600;a:1:{i:0;i:2;}i:1768021200;a:1:{i:0;i:2;}i:1768024800;a:1:{i:0;i:3;}i:1768028400;a:1:{i:0;i:1;}i:1768039200;a:1:{i:0;i:1;}i:1768042800;a:1:{i:0;i:1;}i:1768046400;a:1:{i:0;i:1;}i:1768064400;a:1:{i:0;i:1;}i:1768075200;a:1:{i:0;i:1;}i:1768078800;a:1:{i:0;i:11;}i:1768086000;a:1:{i:0;i:2;}i:1768089600;a:1:{i:0;i:5;}i:1768093200;a:1:{i:0;i:2;}i:1768100400;a:1:{i:0;i:2;}i:1768104000;a:1:{i:0;i:3;}i:1768107600;a:1:{i:0;i:8;}i:1768147200;a:1:{i:0;i:1;}i:1768158000;a:1:{i:0;i:2;}i:1768161600;a:1:{i:0;i:2;}i:1768165200;a:1:{i:0;i:8;}i:1768168800;a:1:{i:0;i:2;}i:1768172400;a:1:{i:0;i:3;}i:1768176000;a:1:{i:0;i:7;}i:1768179600;a:1:{i:0;i:1;}i:1768186800;a:1:{i:0;i:2;}i:1768190400;a:1:{i:0;i:1;}i:1768194000;a:1:{i:0;i:16;}i:1768197600;a:1:{i:0;i:1;}i:1768201200;a:1:{i:0;i:1;}i:1768208400;a:1:{i:0;i:1;}i:1768219200;a:1:{i:0;i:2;}i:1768222800;a:1:{i:0;i:1;}i:1768226400;a:1:{i:0;i:1;}i:1768230000;a:1:{i:0;i:1;}i:1768240800;a:1:{i:0;i:2;}i:1768244400;a:1:{i:0;i:1;}i:1768248000;a:1:{i:0;i:2;}i:1768255200;a:1:{i:0;i:1;}i:1768258800;a:1:{i:0;i:3;}i:1768262400;a:1:{i:0;i:3;}i:1768266000;a:1:{i:0;i:8;}i:1768273200;a:1:{i:0;i:2;}i:1768276800;a:1:{i:0;i:2;}i:1768280400;a:1:{i:0;i:2;}i:1768284000;a:1:{i:0;i:1;}i:1768287600;a:1:{i:0;i:1;}i:1768294800;a:1:{i:0;i:1;}i:1768298400;a:1:{i:0;i:2;}i:1768302000;a:1:{i:0;i:13;}i:1768305600;a:1:{i:0;i:6;}i:1768330800;a:1:{i:0;i:6;}i:1768338000;a:1:{i:0;i:1;}i:1768345200;a:1:{i:0;i:3;}i:1768356000;a:1:{i:0;i:1;}i:1768374000;a:1:{i:0;i:9;}i:1768381200;a:1:{i:0;i:1;}i:1768420800;a:1:{i:0;i:1;}i:1768438800;a:1:{i:0;i:1;}i:1768453200;a:1:{i:0;i:2;}i:1768456800;a:1:{i:0;i:6;}i:1768474800;a:1:{i:0;i:5;}i:1768485600;a:1:{i:0;i:2;}i:1768496400;a:1:{i:0;i:1;}i:1768500000;a:1:{i:0;i:15;}i:1768503600;a:1:{i:0;i:11;}i:1768507200;a:1:{i:0;i:6;}i:1768510800;a:1:{i:0;i:6;}i:1768514400;a:1:{i:0;i:6;}i:1768518000;a:1:{i:0;i:6;}i:1768521600;a:1:{i:0;i:5;}i:1768525200;a:1:{i:0;i:5;}i:1768528800;a:1:{i:0;i:14;}i:1768532400;a:1:{i:0;i:6;}i:1768536000;a:1:{i:0;i:5;}i:1768539600;a:1:{i:0;i:5;}i:1768543200;a:1:{i:0;i:6;}i:1768546800;a:1:{i:0;i:4;}i:1768550400;a:1:{i:0;i:9;}i:1768554000;a:1:{i:0;i:10;}i:1768572000;a:1:{i:0;i:10;}i:1768575600;a:1:{i:0;i:5;}i:1768590000;a:1:{i:0;i:1;}i:1768608000;a:1:{i:0;i:1;}i:1768633200;a:1:{i:0;i:2;}i:1768644000;a:1:{i:0;i:1;}i:1768647600;a:1:{i:0;i:6;}i:1768658400;a:1:{i:0;i:21;}i:1768662000;a:1:{i:0;i:4;}i:1768680000;a:1:{i:0;i:1;}i:1768683600;a:1:{i:0;i:1;}i:1768723200;a:1:{i:0;i:1;}i:1768734000;a:1:{i:0;i:1;}i:1768744800;a:1:{i:0;i:20;}i:1768748400;a:1:{i:0;i:3;}i:1768770000;a:1:{i:0;i:15;}i:1768777200;a:1:{i:0;i:6;}i:1768780800;a:1:{i:0;i:5;}i:1768784400;a:1:{i:0;i:7;}i:1768788000;a:1:{i:0;i:6;}i:1768791600;a:1:{i:0;i:7;}i:1768795200;a:1:{i:0;i:6;}i:1768798800;a:1:{i:0;i:7;}i:1768802400;a:1:{i:0;i:6;}i:1768806000;a:1:{i:0;i:7;}i:1768824000;a:1:{i:0;i:1;}i:1768860000;a:1:{i:0;i:1;}i:1768867200;a:1:{i:0;i:1;}i:1768892400;a:1:{i:0;i:1;}i:1768899600;a:1:{i:0;i:7;}i:1768906800;a:1:{i:0;i:1;}i:1768921200;a:1:{i:0;i:11;}i:1768928400;a:1:{i:0;i:7;}i:1768932000;a:1:{i:0;i:1;}i:1768935600;a:1:{i:0;i:16;}i:1768939200;a:1:{i:0;i:11;}i:1768942800;a:1:{i:0;i:13;}i:1768946400;a:1:{i:0;i:9;}i:1768950000;a:1:{i:0;i:10;}i:1768953600;a:1:{i:0;i:9;}i:1768957200;a:1:{i:0;i:18;}i:1768960800;a:1:{i:0;i:10;}i:1768964400;a:1:{i:0;i:9;}i:1768968000;a:1:{i:0;i:16;}i:1768971600;a:1:{i:0;i:27;}i:1768975200;a:1:{i:0;i:8;}i:1768978800;a:1:{i:0;i:9;}i:1768982400;a:1:{i:0;i:9;}i:1768986000;a:1:{i:0;i:9;}i:1768989600;a:1:{i:0;i:7;}i:1768993200;a:1:{i:0;i:5;}i:1768996800;a:1:{i:0;i:8;}i:1769000400;a:1:{i:0;i:8;}i:1769004000;a:1:{i:0;i:6;}i:1769007600;a:1:{i:0;i:17;}i:1769011200;a:1:{i:0;i:8;}i:1769014800;a:1:{i:0;i:4;}i:1769018400;a:1:{i:0;i:9;}i:1769022000;a:1:{i:0;i:6;}i:1769025600;a:1:{i:0;i:5;}i:1769029200;a:1:{i:0;i:9;}i:1769032800;a:1:{i:0;i:9;}i:1769036400;a:1:{i:0;i:3;}i:1769040000;a:1:{i:0;i:9;}i:1769043600;a:1:{i:0;i:22;}i:1769047200;a:1:{i:0;i:5;}i:1769050800;a:1:{i:0;i:1;}i:1769054400;a:1:{i:0;i:3;}i:1769058000;a:1:{i:0;i:2;}i:1769061600;a:1:{i:0;i:2;}i:1769068800;a:1:{i:0;i:1;}i:1769072400;a:1:{i:0;i:2;}i:1769076000;a:1:{i:0;i:10;}i:1769079600;a:1:{i:0;i:21;}i:1769083200;a:1:{i:0;i:2;}i:1769086800;a:1:{i:0;i:2;}i:1769094000;a:1:{i:0;i:4;}i:1769097600;a:1:{i:0;i:4;}i:1769101200;a:1:{i:0;i:4;}i:1769104800;a:1:{i:0;i:3;}i:1769108400;a:1:{i:0;i:3;}i:1769112000;a:1:{i:0;i:1;}i:1769122800;a:1:{i:0;i:11;}i:1769284800;a:1:{i:0;i:3;}i:1769288400;a:1:{i:0;i:9;}i:1769328000;a:1:{i:0;i:1;}i:1769353200;a:1:{i:0;i:1;}i:1769414400;a:1:{i:0;i:1;}i:1769418000;a:1:{i:0;i:5;}i:1769421600;a:1:{i:0;i:3;}i:1769482800;a:1:{i:0;i:1;}i:1769486400;a:1:{i:0;i:1;}i:1769497200;a:1:{i:0;i:1;}i:1769500800;a:1:{i:0;i:1;}i:1769504400;a:1:{i:0;i:1;}i:1769518800;a:1:{i:0;i:1;}i:1769540400;a:1:{i:0;i:1;}i:1769544000;a:1:{i:0;i:3;}i:1769547600;a:1:{i:0;i:3;}i:1769551200;a:1:{i:0;i:4;}i:1769554800;a:1:{i:0;i:3;}i:1769558400;a:1:{i:0;i:4;}i:1769562000;a:1:{i:0;i:4;}i:1769565600;a:1:{i:0;i:4;}i:1769569200;a:1:{i:0;i:3;}i:1769572800;a:1:{i:0;i:4;}i:1769576400;a:1:{i:0;i:4;}i:1769580000;a:1:{i:0;i:5;}i:1769583600;a:1:{i:0;i:4;}i:1769587200;a:1:{i:0;i:3;}i:1769590800;a:1:{i:0;i:2;}i:1769598000;a:1:{i:0;i:1;}i:1769601600;a:1:{i:0;i:1;}i:1769605200;a:1:{i:0;i:1;}i:1769608800;a:1:{i:0;i:4;}i:1769612400;a:1:{i:0;i:4;}i:1769616000;a:1:{i:0;i:4;}i:1769619600;a:1:{i:0;i:5;}i:1769623200;a:1:{i:0;i:3;}i:1769626800;a:1:{i:0;i:3;}i:1769630400;a:1:{i:0;i:4;}i:1769634000;a:1:{i:0;i:2;}i:1769637600;a:1:{i:0;i:2;}i:1769641200;a:1:{i:0;i:3;}i:1769644800;a:1:{i:0;i:2;}i:1769648400;a:1:{i:0;i:2;}i:1769652000;a:1:{i:0;i:3;}i:1769655600;a:1:{i:0;i:1;}i:1769659200;a:1:{i:0;i:3;}i:1769662800;a:1:{i:0;i:2;}i:1769666400;a:1:{i:0;i:2;}i:1769670000;a:1:{i:0;i:3;}i:1769673600;a:1:{i:0;i:3;}i:1769677200;a:1:{i:0;i:4;}i:1769680800;a:1:{i:0;i:5;}i:1769684400;a:1:{i:0;i:5;}i:1769688000;a:1:{i:0;i:5;}i:1769691600;a:1:{i:0;i:4;}i:1769695200;a:1:{i:0;i:1;}i:1769698800;a:1:{i:0;i:1;}i:1769702400;a:1:{i:0;i:2;}i:1769706000;a:1:{i:0;i:3;}i:1769709600;a:1:{i:0;i:3;}i:1769713200;a:1:{i:0;i:3;}i:1769716800;a:1:{i:0;i:3;}i:1769720400;a:1:{i:0;i:4;}i:1769724000;a:1:{i:0;i:4;}i:1769727600;a:1:{i:0;i:5;}i:1769731200;a:1:{i:0;i:7;}i:1769734800;a:1:{i:0;i:6;}i:1769738400;a:1:{i:0;i:7;}i:1769742000;a:1:{i:0;i:6;}i:1769745600;a:1:{i:0;i:6;}i:1769749200;a:1:{i:0;i:6;}i:1769752800;a:1:{i:0;i:6;}i:1769756400;a:1:{i:0;i:5;}i:1769760000;a:1:{i:0;i:2;}i:1769763600;a:1:{i:0;i:3;}i:1769767200;a:1:{i:0;i:1;}i:1769770800;a:1:{i:0;i:3;}i:1769774400;a:1:{i:0;i:5;}i:1769778000;a:1:{i:0;i:6;}i:1769781600;a:1:{i:0;i:6;}i:1769785200;a:1:{i:0;i:7;}i:1769788800;a:1:{i:0;i:6;}i:1769792400;a:1:{i:0;i:8;}i:1769796000;a:1:{i:0;i:6;}i:1769799600;a:1:{i:0;i:8;}i:1769803200;a:1:{i:0;i:8;}i:1769806800;a:1:{i:0;i:7;}i:1769810400;a:1:{i:0;i:7;}i:1769814000;a:1:{i:0;i:8;}i:1769817600;a:1:{i:0;i:8;}i:1769821200;a:1:{i:0;i:6;}i:1769824800;a:1:{i:0;i:9;}i:1769828400;a:1:{i:0;i:9;}i:1769832000;a:1:{i:0;i:8;}i:1769835600;a:1:{i:0;i:8;}i:1769839200;a:1:{i:0;i:4;}i:1769842800;a:1:{i:0;i:4;}i:1769846400;a:1:{i:0;i:3;}i:1769850000;a:1:{i:0;i:5;}i:1769853600;a:1:{i:0;i:4;}i:1769857200;a:1:{i:0;i:5;}i:1769860800;a:1:{i:0;i:6;}i:1769864400;a:1:{i:0;i:6;}i:1769868000;a:1:{i:0;i:5;}i:1769871600;a:1:{i:0;i:3;}i:1769875200;a:1:{i:0;i:4;}i:1769878800;a:1:{i:0;i:7;}i:1769882400;a:1:{i:0;i:4;}i:1769886000;a:1:{i:0;i:5;}i:1769889600;a:1:{i:0;i:3;}i:1769893200;a:1:{i:0;i:6;}i:1769896800;a:1:{i:0;i:5;}i:1769900400;a:1:{i:0;i:5;}i:1769904000;a:1:{i:0;i:5;}i:1769907600;a:1:{i:0;i:6;}i:1769911200;a:1:{i:0;i:4;}i:1769914800;a:1:{i:0;i:4;}i:1769918400;a:1:{i:0;i:3;}i:1769922000;a:1:{i:0;i:6;}i:1769925600;a:1:{i:0;i:3;}i:1769929200;a:1:{i:0;i:2;}i:1769932800;a:1:{i:0;i:3;}i:1769936400;a:1:{i:0;i:2;}i:1769940000;a:1:{i:0;i:3;}i:1769943600;a:1:{i:0;i:6;}i:1769947200;a:1:{i:0;i:1;}i:1769950800;a:1:{i:0;i:4;}i:1769954400;a:1:{i:0;i:3;}i:1769958000;a:1:{i:0;i:3;}i:1769961600;a:1:{i:0;i:5;}i:1769965200;a:1:{i:0;i:7;}i:1769968800;a:1:{i:0;i:5;}i:1769972400;a:1:{i:0;i:6;}i:1769976000;a:1:{i:0;i:6;}i:1769979600;a:1:{i:0;i:6;}i:1769983200;a:1:{i:0;i:7;}i:1769986800;a:1:{i:0;i:5;}i:1769990400;a:1:{i:0;i:8;}i:1769994000;a:1:{i:0;i:7;}i:1769997600;a:1:{i:0;i:8;}i:1770001200;a:1:{i:0;i:8;}i:1770004800;a:1:{i:0;i:6;}i:1770008400;a:1:{i:0;i:4;}i:1770012000;a:1:{i:0;i:6;}i:1770015600;a:1:{i:0;i:2;}i:1770019200;a:1:{i:0;i:3;}i:1770022800;a:1:{i:0;i:3;}i:1770026400;a:1:{i:0;i:3;}i:1770030000;a:1:{i:0;i:3;}i:1770033600;a:1:{i:0;i:3;}i:1770037200;a:1:{i:0;i:12;}i:1770040800;a:1:{i:0;i:3;}i:1770044400;a:1:{i:0;i:4;}i:1770048000;a:1:{i:0;i:5;}i:1770051600;a:1:{i:0;i:3;}i:1770055200;a:1:{i:0;i:4;}i:1770058800;a:1:{i:0;i:4;}i:1770062400;a:1:{i:0;i:2;}i:1770066000;a:1:{i:0;i:2;}i:1770069600;a:1:{i:0;i:4;}i:1770080400;a:1:{i:0;i:2;}i:1770087600;a:1:{i:0;i:1;}i:1770091200;a:1:{i:0;i:13;}i:1770094800;a:1:{i:0;i:4;}i:1770098400;a:1:{i:0;i:3;}i:1770102000;a:1:{i:0;i:6;}i:1770105600;a:1:{i:0;i:3;}i:1770109200;a:1:{i:0;i:13;}i:1770112800;a:1:{i:0;i:6;}i:1770116400;a:1:{i:0;i:3;}i:1770120000;a:1:{i:0;i:5;}i:1770123600;a:1:{i:0;i:9;}i:1770127200;a:1:{i:0;i:5;}i:1770130800;a:1:{i:0;i:3;}i:1770134400;a:1:{i:0;i:4;}i:1770138000;a:1:{i:0;i:4;}i:1770141600;a:1:{i:0;i:3;}i:1770145200;a:1:{i:0;i:4;}i:1770148800;a:1:{i:0;i:3;}i:1770152400;a:1:{i:0;i:4;}i:1770156000;a:1:{i:0;i:4;}i:1770159600;a:1:{i:0;i:4;}i:1770163200;a:1:{i:0;i:2;}i:1770166800;a:1:{i:0;i:3;}i:1770170400;a:1:{i:0;i:1;}i:1770174000;a:1:{i:0;i:3;}i:1770177600;a:1:{i:0;i:1;}i:1770181200;a:1:{i:0;i:3;}i:1770184800;a:1:{i:0;i:2;}i:1770188400;a:1:{i:0;i:2;}i:1770202800;a:1:{i:0;i:1;}i:1770210000;a:1:{i:0;i:2;}i:1770213600;a:1:{i:0;i:3;}i:1770217200;a:1:{i:0;i:2;}i:1770220800;a:1:{i:0;i:3;}i:1770224400;a:1:{i:0;i:2;}i:1770228000;a:1:{i:0;i:3;}i:1770231600;a:1:{i:0;i:3;}i:1770235200;a:1:{i:0;i:3;}i:1770238800;a:1:{i:0;i:3;}i:1770242400;a:1:{i:0;i:2;}i:1770246000;a:1:{i:0;i:3;}i:1770249600;a:1:{i:0;i:3;}i:1770253200;a:1:{i:0;i:3;}i:1770260400;a:1:{i:0;i:2;}i:1770264000;a:1:{i:0;i:2;}i:1770267600;a:1:{i:0;i:2;}i:1770271200;a:1:{i:0;i:5;}i:1770274800;a:1:{i:0;i:5;}i:1770278400;a:1:{i:0;i:5;}i:1770282000;a:1:{i:0;i:4;}i:1770285600;a:1:{i:0;i:5;}i:1770289200;a:1:{i:0;i:4;}i:1770292800;a:1:{i:0;i:4;}i:1770296400;a:1:{i:0;i:5;}i:1770300000;a:1:{i:0;i:4;}i:1770303600;a:1:{i:0;i:4;}i:1770307200;a:1:{i:0;i:2;}i:1770310800;a:1:{i:0;i:2;}i:1770314400;a:1:{i:0;i:4;}i:1770318000;a:1:{i:0;i:3;}i:1770321600;a:1:{i:0;i:5;}i:1770325200;a:1:{i:0;i:8;}i:1770328800;a:1:{i:0;i:7;}i:1770332400;a:1:{i:0;i:8;}i:1770336000;a:1:{i:0;i:5;}i:1770339600;a:1:{i:0;i:3;}i:1770343200;a:1:{i:0;i:5;}i:1770346800;a:1:{i:0;i:4;}i:1770350400;a:1:{i:0;i:3;}i:1770354000;a:1:{i:0;i:4;}i:1770357600;a:1:{i:0;i:5;}i:1770361200;a:1:{i:0;i:7;}i:1770364800;a:1:{i:0;i:7;}i:1770368400;a:1:{i:0;i:7;}i:1770372000;a:1:{i:0;i:7;}i:1770375600;a:1:{i:0;i:7;}i:1770379200;a:1:{i:0;i:14;}i:1770382800;a:1:{i:0;i:9;}i:1770386400;a:1:{i:0;i:6;}i:1770390000;a:1:{i:0;i:6;}i:1770393600;a:1:{i:0;i:8;}i:1770397200;a:1:{i:0;i:6;}i:1770400800;a:1:{i:0;i:8;}i:1770404400;a:1:{i:0;i:8;}i:1770408000;a:1:{i:0;i:9;}i:1770411600;a:1:{i:0;i:7;}i:1770415200;a:1:{i:0;i:9;}i:1770418800;a:1:{i:0;i:7;}i:1770422400;a:1:{i:0;i:9;}}','off'),
(86427,'litespeed.conf.optm-js_delay_inc','[]','yes'),
(89133,'awsm_jobs_upgrade_count','1','yes'),
(91299,'litespeed.conf.optm-dns_preconnect','[]','yes'),
(93915,'wp_attachment_pages_enabled','1','yes'),
(97648,'litespeed.conf.cache-vary_cookies','[]','yes'),
(97649,'litespeed.conf.media-preload_featured','','yes'),
(117004,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','no'),
(118278,'litespeed.conf.cache-ajax_ttl','[]','auto'),
(118279,'litespeed.conf.debug-collapse_qs','','auto'),
(118280,'litespeed.conf.optm-html_skip_comment','[]','auto'),
(145636,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"4ad6ed4956ef7f814db220c22a123393\";s:6:\"blocks\";a:6:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:18:\"core/term-template\";s:120:\":where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'),
(148797,'license_key_token','','auto'),
(148798,'wpb_js_js_composer_purchase_code','8143b1bf-cc16-4212-bdc0-74457de9ea38','auto'),
(148807,'wpb_license_errors','a:0:{}','auto'),
(148888,'wpb_usage_count','a:10:{s:13:\"vc_media_grid\";i:1;s:21:\"vc_masonry_media_grid\";i:3;s:14:\"vc_empty_space\";i:3;s:12:\"smartslider3\";i:1;s:17:\"vc_custom_heading\";i:5;s:14:\"vc_column_text\";i:7;s:15:\"vc_single_image\";i:5;s:6:\"vc_btn\";i:1;s:7:\"vc_icon\";i:1;s:16:\"vc_wp_custommenu\";i:3;}','auto'),
(154048,'recovery_mode_email_last_sent','1758732564','auto'),
(154055,'loginizer_softwp_upgrade','-1743070532','off'),
(170269,'loginizer_softwp_supgrade','a:4:{s:7:\"timeout\";i:4;s:10:\"next_check\";i:1743675332;s:10:\"softwp_lic\";s:30:\"SOFTWP-22383-13990-54146-60221\";s:10:\"reverified\";i:1;}','auto'),
(170270,'softaculous_pro_license','a:13:{s:7:\"license\";s:30:\"SOFTWP-22383-13990-54146-60221\";s:7:\"expires\";s:8:\"20250320\";s:4:\"type\";s:1:\"1\";s:8:\"type_txt\";s:7:\"Premium\";s:9:\"num_sites\";N;s:4:\"plan\";s:8:\"personal\";s:6:\"active\";i:1;s:10:\"licexpired\";N;s:4:\"thid\";N;s:6:\"status\";i:1;s:9:\"last_edit\";s:10:\"1741255478\";s:10:\"status_txt\";s:33:\"<font color=\"green\">Active</font>\";s:8:\"has_plid\";i:1;}','yes'),
(176843,'litespeed.conf.qc-cname','','auto'),
(186049,'litespeed.conf.optm-ccss_whitelist','[]','auto'),
(211385,'litespeed.conf.cdn-cloudflare_clear','','auto'),
(231183,'litespeed.conf.media-auto_rescale_ori','','auto'),
(231184,'litespeed.conf.debug-disable_tmp','0','auto'),
(232600,'bcf_custom_fonts_2_0_2_migration','1','auto'),
(232601,'_custom_fonts_db_version','2.1.17','auto'),
(232602,'bsf_analytics_installed_time','1756937654','off'),
(232606,'bcf_font_urls','a:4:{i:0;s:99:\"https://guidoconstructioninc.com/wp-content/bcf-fonts/DM Serif Text/dm-serif-text-400-normal0.woff2\";i:1;s:99:\"https://guidoconstructioninc.com/wp-content/bcf-fonts/DM Serif Text/dm-serif-text-400-normal1.woff2\";i:2;s:102:\"https://guidoconstructioninc.com/wp-content/bcf-fonts/DM Serif Text/dm-serif-text-italic-italic0.woff2\";i:3;s:102:\"https://guidoconstructioninc.com/wp-content/bcf-fonts/DM Serif Text/dm-serif-text-italic-italic1.woff2\";}','auto'),
(232609,'bcf_preloading_fonts','1','auto'),
(234507,'litespeed.conf.img_optm-sizes_skipped','[]','auto'),
(237210,'updraft_pcloud','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-fc20f60c720133f7812cadb3c3b7d6a4\";a:0:{}}}','on'),
(237264,'site_logo','667','auto'),
(237290,'wpb_js_google_fonts_subsets','a:1:{i:0;s:5:\"latin\";}','auto'),
(237291,'wpb_js_local_google_fonts','1','auto'),
(237292,'wpb_js_default_template_post_type','a:0:{}','auto'),
(237362,'_transient_vcv-45.15.0lastSystemCheck','1758758857','on'),
(237365,'vcv-hubTeaserElements','a:1:{s:12:\"All Elements\";a:4:{s:2:\"id\";s:12:\"AllElements0\";s:5:\"index\";i:0;s:5:\"title\";s:12:\"All Elements\";s:8:\"elements\";a:180:{i:0;a:10:{s:4:\"name\";s:15:\"Tabs with Slide\";s:3:\"tag\";s:13:\"tabsWithSlide\";s:5:\"group\";s:10:\"Containers\";s:10:\"previewUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/tabsWithSlide.1673944677.tabs-with-slide-preview.png\";s:12:\"thumbnailUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/tabsWithSlide.1673944677.tabs-with-slide-thumbnail.png\";s:11:\"description\";s:60:\"Add tab element with slide animation to divide your content.\";s:6:\"bundle\";s:21:\"element/tabsWithSlide\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:1;a:10:{s:4:\"name\";s:7:\"Section\";s:3:\"tag\";s:7:\"section\";s:5:\"group\";s:16:\"Basic,Containers\";s:10:\"previewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/section.1683793741.preview-section.jpg\";s:12:\"thumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/section.1683793741.thumbnail-section.png\";s:11:\"description\";s:103:\"Section is an optional root element which can be used to group rows in order to apply joint background.\";s:6:\"bundle\";s:15:\"element/section\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:2;a:10:{s:4:\"name\";s:9:\"3D Button\";s:3:\"tag\";s:8:\"3dButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/3dButton.1747296715.preview-3d-button.png\";s:12:\"thumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/3dButton.1747296715.thumbnail-3d-button.png\";s:11:\"description\";s:75:\"A 3D style button with the ability to control a hover and animation states.\";s:6:\"bundle\";s:16:\"element/3dButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:3;a:10:{s:4:\"name\";s:20:\"Animated Icon Button\";s:3:\"tag\";s:18:\"animatedIconButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:110:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/animatedIconButton.1683793838.preview-animated-icon-button.png\";s:12:\"thumbnailUrl\";s:112:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/animatedIconButton.1683793838.thumbnail-animated-icon-button.png\";s:11:\"description\";s:70:\"An icon button with animation effect and button text display on hover.\";s:6:\"bundle\";s:26:\"element/animatedIconButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:4;a:10:{s:4:\"name\";s:23:\"Animated Outline Button\";s:3:\"tag\";s:21:\"animatedOutlineButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:116:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/animatedOutlineButton.1683793835.preview-animated-outline-button.png\";s:12:\"thumbnailUrl\";s:118:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/animatedOutlineButton.1683793835.thumbnail-animated-outline-button.png\";s:11:\"description\";s:70:\"Outline button with an animation effect that wraps around button text.\";s:6:\"bundle\";s:29:\"element/animatedOutlineButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:5;a:10:{s:4:\"name\";s:22:\"Animated Shadow Button\";s:3:\"tag\";s:20:\"animatedShadowButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:114:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/animatedShadowButton.1683793835.preview-animated-shadow-button.png\";s:12:\"thumbnailUrl\";s:116:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/animatedShadowButton.1683793835.thumbnail-animated-shadow-button.png\";s:11:\"description\";s:51:\"A button with centered shadow effect and animation.\";s:6:\"bundle\";s:28:\"element/animatedShadowButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:6;a:10:{s:4:\"name\";s:25:\"Animated Two Color Button\";s:3:\"tag\";s:22:\"animatedTwoColorButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:119:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/animatedTwoColorButton.1683793834.preview-animated-two-color-button.png\";s:12:\"thumbnailUrl\";s:121:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/animatedTwoColorButton.1683793834.thumbnail-animated-two-color-button.png\";s:11:\"description\";s:74:\"A modern animated button with two color intersection and smooth animation.\";s:6:\"bundle\";s:30:\"element/animatedTwoColorButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:7;a:10:{s:4:\"name\";s:17:\"Basic Button Icon\";s:3:\"tag\";s:15:\"basicButtonIcon\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/basicButtonIcon.1683793833.preview-basic-button-icon.jpg\";s:12:\"thumbnailUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/basicButtonIcon.1683793833.thumbnail-basic-button-icon.jpg\";s:11:\"description\";s:77:\"Flat style button with an icon and slide effect to catch visitor\'s attention.\";s:6:\"bundle\";s:23:\"element/basicButtonIcon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:8;a:10:{s:4:\"name\";s:19:\"Border Hover Button\";s:3:\"tag\";s:17:\"borderHoverButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/borderHoverButton.1683793828.preview-border-hover-button.png\";s:12:\"thumbnailUrl\";s:110:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/borderHoverButton.1683793828.thumbnail-border-hover-button.png\";s:11:\"description\";s:80:\"Button with border accent as a hover effect and ability to control border color.\";s:6:\"bundle\";s:25:\"element/borderHoverButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:9;a:10:{s:4:\"name\";s:16:\"Double Separator\";s:3:\"tag\";s:15:\"doubleSeparator\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/doubleSeparator.1683793809.double-separator-preview.jpg\";s:12:\"thumbnailUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/doubleSeparator.1683793809.double-separator-thumbnail.jpg\";s:11:\"description\";s:76:\"Double line separator with different line length - calculated automatically.\";s:6:\"bundle\";s:23:\"element/doubleSeparator\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:10;a:10:{s:4:\"name\";s:20:\"Filled Shadow Button\";s:3:\"tag\";s:18:\"filledShadowButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:110:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/filledShadowButton.1683793793.preview-filled-shadow-button.png\";s:12:\"thumbnailUrl\";s:112:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/filledShadowButton.1683793793.thumbnail-filled-shadow-button.png\";s:11:\"description\";s:83:\"A geometric style filled button with shadow effect and custom hover color controls.\";s:6:\"bundle\";s:26:\"element/filledShadowButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:11;a:10:{s:4:\"name\";s:8:\"Flip Box\";s:3:\"tag\";s:7:\"flipBox\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/flipBox.1683793711.flip-box-preview.jpg\";s:12:\"thumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/flipBox.1683793711.flip-box-thumbnail.jpg\";s:11:\"description\";s:123:\"Flip box element with image slide and textual content slide allowing to define default state and flip box background color.\";s:6:\"bundle\";s:15:\"element/flipBox\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:12;a:10:{s:4:\"name\";s:13:\"Gatsby Button\";s:3:\"tag\";s:12:\"gatsbyButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/gatsbyButton.1683793791.preview-gatsby-button.png\";s:12:\"thumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/gatsbyButton.1683793791.thumbnail-gatsby-button.png\";s:11:\"description\";s:74:\"A Gatsby style button with a misplaced outline and transparent fill color.\";s:6:\"bundle\";s:20:\"element/gatsbyButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:13;a:10:{s:4:\"name\";s:19:\"Half Outline Button\";s:3:\"tag\";s:17:\"halfOutlineButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/halfOutlineButton.1683793785.preview-half-outline-button.png\";s:12:\"thumbnailUrl\";s:110:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/halfOutlineButton.1683793785.thumbnail-half-outline-button.png\";s:11:\"description\";s:66:\"Outline button with half outline, position and animation controls.\";s:6:\"bundle\";s:25:\"element/halfOutlineButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:14;a:10:{s:4:\"name\";s:11:\"Message Box\";s:3:\"tag\";s:10:\"messageBox\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/messageBox.1683793718.message-box-preview.jpg\";s:12:\"thumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/messageBox.1683793718.message-box-thumbnail.png\";s:11:\"description\";s:94:\"Add simple message box with predefined notification or create custom message with custom icon.\";s:6:\"bundle\";s:18:\"element/messageBox\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:15;a:10:{s:4:\"name\";s:19:\"Outline Button Icon\";s:3:\"tag\";s:17:\"outlineButtonIcon\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/outlineButtonIcon.1683793757.outline-button-icon-preview.jpg\";s:12:\"thumbnailUrl\";s:110:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/outlineButtonIcon.1683793757.outline-button-icon-thumbnail.jpg\";s:11:\"description\";s:125:\"Outline button with solid fill and icon appearance o hover. Great solution to be used as a secondary button within a website.\";s:6:\"bundle\";s:25:\"element/outlineButtonIcon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:16;a:10:{s:4:\"name\";s:21:\"Outline Shadow Button\";s:3:\"tag\";s:19:\"outlineShadowButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:112:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/outlineShadowButton.1683793754.preview-outline-shadow-button.png\";s:12:\"thumbnailUrl\";s:114:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/outlineShadowButton.1683793754.thumbnail-outline-shadow-button.png\";s:11:\"description\";s:64:\"A geometric style outline button with custom hover color option.\";s:6:\"bundle\";s:27:\"element/outlineShadowButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:17;a:10:{s:4:\"name\";s:20:\"Parallelogram Button\";s:3:\"tag\";s:19:\"parallelogramButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:111:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/parallelogramButton.1683793753.preview-parallelogram-button.png\";s:12:\"thumbnailUrl\";s:113:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/parallelogramButton.1683793753.thumbnail-parallelogram-button.png\";s:11:\"description\";s:62:\"A button in parallelogram shape with ability to control angle.\";s:6:\"bundle\";s:27:\"element/parallelogramButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:18;a:10:{s:4:\"name\";s:9:\"Post Grid\";s:3:\"tag\";s:9:\"postsGrid\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:80:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/postsGrid.1725879700.preview.jpg\";s:12:\"thumbnailUrl\";s:82:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/postsGrid.1725879700.thumbnail.jpg\";s:11:\"description\";s:63:\"Add page, post or custom post type grid teasers in grid layout.\";s:6:\"bundle\";s:17:\"element/postsGrid\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:19;a:10:{s:4:\"name\";s:13:\"Pricing Table\";s:3:\"tag\";s:12:\"pricingTable\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/pricingTable.1683793705.preview-pricing-table.png\";s:12:\"thumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/pricingTable.1683793705.thumbnail-pricing-table.jpg\";s:11:\"description\";s:86:\"Simple filled or outline pricing table to display prices of your products or services.\";s:6:\"bundle\";s:20:\"element/pricingTable\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:20;a:10:{s:4:\"name\";s:12:\"Quote Button\";s:3:\"tag\";s:11:\"quoteButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/quoteButton.1683793744.preview-quote-button.png\";s:12:\"thumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/quoteButton.1683793744.thumbnail-quote-button.png\";s:11:\"description\";s:74:\"Quote button is a good call to action that points directly to the content.\";s:6:\"bundle\";s:19:\"element/quoteButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:21;a:10:{s:4:\"name\";s:13:\"Resize Button\";s:3:\"tag\";s:12:\"resizeButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/resizeButton.1683793743.preview-resize-button.png\";s:12:\"thumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/resizeButton.1683793743.thumbnail-resize-button.png\";s:11:\"description\";s:77:\"A simple button that resizes with animation on hover to catch user attention.\";s:6:\"bundle\";s:20:\"element/resizeButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:22;a:10:{s:4:\"name\";s:22:\"Simple Gradient Button\";s:3:\"tag\";s:20:\"simpleGradientButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:114:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/simpleGradientButton.1683793739.preview-simple-gradient-button.png\";s:12:\"thumbnailUrl\";s:116:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/simpleGradientButton.1683793739.thumbnail-simple-gradient-button.png\";s:11:\"description\";s:67:\"A simple gradient button ith automatic gradient effect calculation.\";s:6:\"bundle\";s:28:\"element/simpleGradientButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:23;a:10:{s:4:\"name\";s:20:\"Strikethrough Button\";s:3:\"tag\";s:19:\"strikethroughButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:111:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/strikethroughButton.1673944672.preview-strikethrough-button.png\";s:12:\"thumbnailUrl\";s:113:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/strikethroughButton.1673944672.thumbnail-strikethrough-button.png\";s:11:\"description\";s:66:\"A simple text button with animated strike through effect on hover.\";s:6:\"bundle\";s:27:\"element/strikethroughButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:24;a:10:{s:4:\"name\";s:28:\"Strikethrough Outline Button\";s:3:\"tag\";s:26:\"strikethroughOutlineButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:126:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/strikethroughOutlineButton.1673944674.preview-strikethrough-outline-button.png\";s:12:\"thumbnailUrl\";s:128:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/strikethroughOutlineButton.1673944674.thumbnail-strikethrough-outline-button.png\";s:11:\"description\";s:90:\"Outline button with a horizontal or vertical strikethrough and fill color effect on hover.\";s:6:\"bundle\";s:34:\"element/strikethroughOutlineButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:25;a:10:{s:4:\"name\";s:16:\"Symmetric Button\";s:3:\"tag\";s:15:\"symmetricButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/symmetricButton.1673944675.preview-symmetric-button.png\";s:12:\"thumbnailUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/symmetricButton.1673944675.thumbnail-symmetric-button.png\";s:11:\"description\";s:57:\"A large circle button with text and zoom effect on hover.\";s:6:\"bundle\";s:23:\"element/symmetricButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:26;a:10:{s:4:\"name\";s:26:\"Transparent Outline Button\";s:3:\"tag\";s:24:\"transparentOutlineButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:122:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/transparentOutlineButton.1673944682.preview-transparent-outline-button.png\";s:12:\"thumbnailUrl\";s:124:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/transparentOutlineButton.1673944682.thumbnail-transparent-outline-button.png\";s:11:\"description\";s:103:\"Transparent outline button with fill color effect on hover is perfect for dark or colorful backgrounds.\";s:6:\"bundle\";s:32:\"element/transparentOutlineButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:27;a:10:{s:4:\"name\";s:16:\"Underline Button\";s:3:\"tag\";s:15:\"underlineButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/underlineButton.1673944683.preview-underline-button.png\";s:12:\"thumbnailUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/underlineButton.1673944683.thumbnail-underline-button.png\";s:11:\"description\";s:57:\"A simple text button with underline and resize animation.\";s:6:\"bundle\";s:23:\"element/underlineButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:28;a:10:{s:4:\"name\";s:23:\"WooCommerce Add To Cart\";s:3:\"tag\";s:20:\"woocommerceAddToCart\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceAddToCart.1673944688.preview.jpg\";s:12:\"thumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceAddToCart.1673944688.thumbnail.jpg\";s:11:\"description\";s:85:\"WooCommerce element shows the price and add to cart button of a single product by ID.\";s:6:\"bundle\";s:28:\"element/woocommerceAddToCart\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:29;a:10:{s:4:\"name\";s:33:\"WooCommerce Best Selling Products\";s:3:\"tag\";s:30:\"woocommerceBestSellingProducts\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceBestSellingProducts.1673944688.preview.jpg\";s:12:\"thumbnailUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceBestSellingProducts.1673944688.thumbnail.jpg\";s:11:\"description\";s:62:\"WooCommerce element which displays your best selling products.\";s:6:\"bundle\";s:38:\"element/woocommerceBestSellingProducts\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:30;a:10:{s:4:\"name\";s:16:\"WooCommerce Cart\";s:3:\"tag\";s:15:\"woocommerceCart\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceCart.1673943998.preview.jpg\";s:12:\"thumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceCart.1673943998.thumbnail.jpg\";s:11:\"description\";s:104:\"WooCommerce element displays cart content and interface for coupon codes and other cart bits and pieces.\";s:6:\"bundle\";s:23:\"element/woocommerceCart\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:31;a:10:{s:4:\"name\";s:20:\"WooCommerce Checkout\";s:3:\"tag\";s:19:\"woocommerceCheckout\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceCheckout.3328770.1593162895.preview.jpg\";s:12:\"thumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceCheckout.3328770.1593162895.thumbnail.jpg\";s:11:\"description\";s:59:\"WooCommerce checkout element displays the checkout process.\";s:6:\"bundle\";s:27:\"element/woocommerceCheckout\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:32;a:10:{s:4:\"name\";s:29:\"WooCommerce Featured Products\";s:3:\"tag\";s:27:\"woocommerceFeaturedProducts\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceFeaturedProducts.1673944689.preview.jpg\";s:12:\"thumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceFeaturedProducts.1673944689.thumbnail.jpg\";s:11:\"description\";s:71:\"WooCommerce element displays products that have been set as \"featured\".\";s:6:\"bundle\";s:35:\"element/woocommerceFeaturedProducts\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:33;a:10:{s:4:\"name\";s:22:\"WooCommerce My Account\";s:3:\"tag\";s:20:\"woocommerceMyAccount\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceMyAccount.1673944689.preview.jpg\";s:12:\"thumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceMyAccount.1673944689.thumbnail.jpg\";s:11:\"description\";s:124:\"WooCommerce element shows the ‘my account’ section where the customer can view past orders and update their information.\";s:6:\"bundle\";s:28:\"element/woocommerceMyAccount\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:34;a:10:{s:4:\"name\";s:26:\"WooCommerce Order Tracking\";s:3:\"tag\";s:24:\"woocommerceOrderTracking\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceOrderTracking.1605100092.preview.jpg\";s:12:\"thumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceOrderTracking.1605100092.thumbnail.jpg\";s:11:\"description\";s:91:\"WooCommerce element lets a user see the status of an order by entering their order details.\";s:6:\"bundle\";s:32:\"element/woocommerceOrderTracking\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:35;a:10:{s:4:\"name\";s:19:\"WooCommerce Product\";s:3:\"tag\";s:18:\"woocommerceProduct\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceProduct.1673944689.preview.jpg\";s:12:\"thumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceProduct.1673944689.thumbnail.jpg\";s:11:\"description\";s:56:\"WooCommerce element shows a single product by ID or SKU.\";s:6:\"bundle\";s:26:\"element/woocommerceProduct\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:36;a:10:{s:4:\"name\";s:29:\"WooCommerce Product Attribute\";s:3:\"tag\";s:27:\"woocommerceProductAttribute\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceProductAttribute.1673943998.preview.jpg\";s:12:\"thumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceProductAttribute.1673943998.thumbnail.jpg\";s:11:\"description\";s:63:\"WooCommerce element lists products with an attribute shortcode.\";s:6:\"bundle\";s:35:\"element/woocommerceProductAttribute\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:37;a:10:{s:4:\"name\";s:30:\"WooCommerce Product Categories\";s:3:\"tag\";s:28:\"woocommerceProductCategories\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceProductCategories.1673943999.preview.jpg\";s:12:\"thumbnailUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceProductCategories.1673943999.thumbnail.jpg\";s:11:\"description\";s:53:\"WooCommerce element displays product categories loop.\";s:6:\"bundle\";s:36:\"element/woocommerceProductCategories\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:38;a:10:{s:4:\"name\";s:28:\"WooCommerce Product Category\";s:3:\"tag\";s:26:\"woocommerceProductCategory\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceProductCategory.1673944001.preview.jpg\";s:12:\"thumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceProductCategory.1673944001.thumbnail.jpg\";s:11:\"description\";s:66:\"WooCommerce element shows multiple products in a category by slug.\";s:6:\"bundle\";s:34:\"element/woocommerceProductCategory\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:39;a:10:{s:4:\"name\";s:24:\"WooCommerce Product Page\";s:3:\"tag\";s:22:\"woocommerceProductPage\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceProductPage.1635775750.preview.jpg\";s:12:\"thumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceProductPage.1635775750.thumbnail.jpg\";s:11:\"description\";s:66:\"WooCommerce element shows a full single product page by ID or SKU.\";s:6:\"bundle\";s:30:\"element/woocommerceProductPage\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:40;a:10:{s:4:\"name\";s:20:\"WooCommerce Products\";s:3:\"tag\";s:19:\"woocommerceProducts\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceProducts.1673944000.preview.jpg\";s:12:\"thumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceProducts.1673944000.thumbnail.jpg\";s:11:\"description\";s:57:\"WooCommerce element shows multiple products by ID or SKU.\";s:6:\"bundle\";s:27:\"element/woocommerceProducts\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:41;a:10:{s:4:\"name\";s:27:\"WooCommerce Recent Products\";s:3:\"tag\";s:25:\"woocommerceRecentProducts\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceRecentProducts.1673944002.preview.jpg\";s:12:\"thumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceRecentProducts.1673944002.thumbnail.jpg\";s:11:\"description\";s:109:\"WooCommerce element lists the most recent products added to your WooCommerce site – useful on the homepage.\";s:6:\"bundle\";s:33:\"element/woocommerceRecentProducts\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:42;a:10:{s:4:\"name\";s:28:\"WooCommerce Related Products\";s:3:\"tag\";s:26:\"woocommerceRelatedProducts\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceRelatedProducts.1673944002.preview.jpg\";s:12:\"thumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceRelatedProducts.1673944002.thumbnail.jpg\";s:11:\"description\";s:43:\"WooCommerce element lists related products.\";s:6:\"bundle\";s:34:\"element/woocommerceRelatedProducts\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:43;a:10:{s:4:\"name\";s:25:\"WooCommerce Sale Products\";s:3:\"tag\";s:23:\"woocommerceSaleProducts\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceSaleProducts.1673944003.preview.jpg\";s:12:\"thumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceSaleProducts.1673944003.thumbnail.jpg\";s:11:\"description\";s:47:\"WooCommerce element lists all products on sale.\";s:6:\"bundle\";s:31:\"element/woocommerceSaleProducts\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:44;a:10:{s:4:\"name\";s:30:\"WooCommerce Top Rated Products\";s:3:\"tag\";s:27:\"woocommerceTopRatedProducts\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceTopRatedProducts.1673944012.preview.jpg\";s:12:\"thumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceTopRatedProducts.1673944012.thumbnail.jpg\";s:11:\"description\";s:52:\"WooCommerce element list top-rated products on sale.\";s:6:\"bundle\";s:35:\"element/woocommerceTopRatedProducts\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:45;a:10:{s:4:\"name\";s:13:\"ZigZag Button\";s:3:\"tag\";s:12:\"zigZagButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/zigZagButton.1673944013.preview-zigzag-button.png\";s:12:\"thumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/zigZagButton.1673944013.thumbnail-zigzag-button.png\";s:11:\"description\";s:75:\"A text based button with zig zag underline and custom hover color controls.\";s:6:\"bundle\";s:20:\"element/zigZagButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:46;a:10:{s:4:\"name\";s:14:\"Call To Action\";s:3:\"tag\";s:12:\"callToAction\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/callToAction.1683793729.preview-call-to-action.png\";s:12:\"thumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/callToAction.1683793729.thumbnail-call-to-action.png\";s:11:\"description\";s:112:\"Add an eye-catching call to action block to immediately drag visitor\'s attention and deliver a specific message.\";s:6:\"bundle\";s:20:\"element/callToAction\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:47;a:10:{s:4:\"name\";s:19:\"Outline Message Box\";s:3:\"tag\";s:17:\"outlineMessageBox\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/outlineMessageBox.1683793704.outline-message-box-preview.png\";s:12:\"thumbnailUrl\";s:110:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/outlineMessageBox.1683793704.outline-message-box-thumbnail.png\";s:11:\"description\";s:90:\"Add outline style message box with predesigned notifications or create your custom notice.\";s:6:\"bundle\";s:25:\"element/outlineMessageBox\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:48;a:10:{s:4:\"name\";s:11:\"Empty Space\";s:3:\"tag\";s:10:\"emptySpace\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/emptySpace.1683793806.empty-space-preview.png\";s:12:\"thumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/emptySpace.1683793806.empty-space-thumbnail.png\";s:11:\"description\";s:108:\"Add empty space to your layout with a blank empty space element and control spaces across different devices.\";s:6:\"bundle\";s:18:\"element/emptySpace\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:49;a:10:{s:4:\"name\";s:18:\"Widgetized Sidebar\";s:3:\"tag\";s:17:\"widgetizedSidebar\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/widgetizedSidebar.1673944687.wordpress-widgets-preview.png\";s:12:\"thumbnailUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/widgetizedSidebar.1673944687.wordpress-widgets-thumbnail.png\";s:11:\"description\";s:65:\"Add any of your saved WordPress sidebars anywhere in the content.\";s:6:\"bundle\";s:25:\"element/widgetizedSidebar\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:50;a:10:{s:4:\"name\";s:13:\"Flickr Widget\";s:3:\"tag\";s:12:\"flickrWidget\";s:5:\"group\";s:6:\"Social\";s:10:\"previewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/flickrWidget.1683793792.flickr-widget-preview.jpg\";s:12:\"thumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/flickrWidget.1683793792.flickr-widget-thumbnail.png\";s:11:\"description\";s:100:\"Add Flickr image grid gallery to your site, specify the number of images with an easy-to-use widget.\";s:6:\"bundle\";s:20:\"element/flickrWidget\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:51;a:10:{s:4:\"name\";s:13:\"Sandwich Menu\";s:3:\"tag\";s:12:\"sandwichMenu\";s:5:\"group\";s:15:\"Header & Footer\";s:10:\"previewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/sandwichMenu.1725879715.sandwich-menu-preview.png\";s:12:\"thumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/sandwichMenu.1725879715.sandwich-menu-thumbnail.png\";s:11:\"description\";s:79:\"Add sandwich menu with/without background and full screen overlay to your site.\";s:6:\"bundle\";s:20:\"element/sandwichMenu\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:52;a:10:{s:4:\"name\";s:9:\"Copyright\";s:3:\"tag\";s:9:\"copyright\";s:5:\"group\";s:15:\"Header & Footer\";s:10:\"previewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/copyright.1683793816.copyright-preview.png\";s:12:\"thumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/copyright.1683793816.copyright-thumbnail.png\";s:11:\"description\";s:80:\"Display copyright information with your site name and automatic year generation.\";s:6:\"bundle\";s:17:\"element/copyright\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:53;a:10:{s:4:\"name\";s:10:\"Basic Menu\";s:3:\"tag\";s:9:\"basicMenu\";s:5:\"group\";s:15:\"Header & Footer\";s:10:\"previewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/basicMenu.1706607262.basic-menu-preview.png\";s:12:\"thumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/basicMenu.1706607262.basic-menu-thumbnail.png\";s:11:\"description\";s:53:\"Add simple text menu with hover submenu to your site.\";s:6:\"bundle\";s:17:\"element/basicMenu\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:54;a:10:{s:4:\"name\";s:11:\"Logo Widget\";s:3:\"tag\";s:10:\"logoWidget\";s:5:\"group\";s:13:\"Theme Builder\";s:10:\"previewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/logoWidget.1706607270.logo-widget-preview.png\";s:12:\"thumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/logoWidget.1706607270.logo-widget-thumbnail.png\";s:11:\"description\";s:78:\"Display your site logo (defined in WordPress Customizer) anywhere on the page.\";s:6:\"bundle\";s:18:\"element/logoWidget\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:55;a:10:{s:4:\"name\";s:9:\"Hover Box\";s:3:\"tag\";s:8:\"hoverBox\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/hoverBox.1683793711.hover-box-preview.jpg\";s:12:\"thumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/hoverBox.1683793711.hover-box-thumbnail.jpg\";s:11:\"description\";s:79:\"Image hover-box with inner outline border and custom title appearance on hover.\";s:6:\"bundle\";s:16:\"element/hoverBox\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:56;a:10:{s:4:\"name\";s:21:\"Outline Pricing Table\";s:3:\"tag\";s:19:\"outlinePricingTable\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:112:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/outlinePricingTable.1683793709.preview-outline-pricing-table.jpg\";s:12:\"thumbnailUrl\";s:114:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/outlinePricingTable.1683793709.thumbnail-outline-pricing-table.jpg\";s:11:\"description\";s:132:\"Outline style pricing table with optional icon element, title, price, feature description and bold transition effect on hover state.\";s:6:\"bundle\";s:27:\"element/outlinePricingTable\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:57;a:10:{s:4:\"name\";s:14:\"Icon Hover Box\";s:3:\"tag\";s:12:\"iconHoverBox\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/iconHoverBox.1683793728.icon-hover-box-preview.png\";s:12:\"thumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/iconHoverBox.1683793728.icon-hover-box-thumbnail.png\";s:11:\"description\";s:89:\"Hover box with icon and overlay display as hover effect for portfolio items and services.\";s:6:\"bundle\";s:20:\"element/iconHoverBox\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:58;a:10:{s:4:\"name\";s:12:\"Classic Tabs\";s:3:\"tag\";s:11:\"classicTabs\";s:5:\"group\";s:10:\"Containers\";s:10:\"previewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/classicTabs.1683793818.classic-tabs-preview.png\";s:12:\"thumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/classicTabs.1683793818.classic-tabs-thumbnail.png\";s:11:\"description\";s:127:\"A simple classic tabs element to divide your content into logic problems (ex. product description and technical specification).\";s:6:\"bundle\";s:19:\"element/classicTabs\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:59;a:10:{s:4:\"name\";s:14:\"Tall Hover Box\";s:3:\"tag\";s:12:\"tallHoverBox\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/tallHoverBox.1683793699.tall-hover-box-preview.jpg\";s:12:\"thumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/tallHoverBox.1683793699.tall-hover-box-thumbnail.jpg\";s:11:\"description\";s:91:\"Tall hover box with title and description animation on hover to capture visitors attention.\";s:6:\"bundle\";s:20:\"element/tallHoverBox\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:60;a:10:{s:4:\"name\";s:16:\"Separated Button\";s:3:\"tag\";s:15:\"separatedButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/separatedButton.1683793741.preview-separated-button.jpg\";s:12:\"thumbnailUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/separatedButton.1683793741.thumbnail-separated-button.jpg\";s:11:\"description\";s:98:\"Flat style button with a separate part for icon element from icon library and simple hover effect.\";s:6:\"bundle\";s:23:\"element/separatedButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:61;a:10:{s:4:\"name\";s:12:\"Sidebar Menu\";s:3:\"tag\";s:11:\"sidebarMenu\";s:5:\"group\";s:15:\"Header & Footer\";s:10:\"previewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/sidebarMenu.1725879716.sidebar-menu-preview.png\";s:12:\"thumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/sidebarMenu.1725879716.sidebar-menu-thumbnail.png\";s:11:\"description\";s:111:\"Sidebar menu element with all submenu sections open by default - use as sidebar or footer menu on your website.\";s:6:\"bundle\";s:19:\"element/sidebarMenu\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:62;a:10:{s:4:\"name\";s:11:\"Testimonial\";s:3:\"tag\";s:11:\"testimonial\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/testimonial.1673944678.preview-testimonial.png\";s:12:\"thumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/testimonial.1673944678.thumbnail-testimonial.png\";s:11:\"description\";s:103:\"Add testimonials to your site to share what your customers are saying about your products and services.\";s:6:\"bundle\";s:19:\"element/testimonial\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:63;a:10:{s:4:\"name\";s:14:\"Contact Form 7\";s:3:\"tag\";s:12:\"contactForm7\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/contactForm7.1683793818.contact-form-7-preview.png\";s:12:\"thumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/contactForm7.1683793818.contact-form-7-thumbnail.png\";s:11:\"description\";s:110:\"Add Contact Form 7 form to your layout (Note: Contact Form 7 plugin must be installed on your WordPress site).\";s:6:\"bundle\";s:20:\"element/contactForm7\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:64;a:10:{s:4:\"name\";s:18:\"Syntax Highlighter\";s:3:\"tag\";s:17:\"syntaxHighlighter\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/syntaxHighlighter.1673944675.syntax-highlighter-preview.png\";s:12:\"thumbnailUrl\";s:109:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/syntaxHighlighter.1673944675.syntax-highlighter-thumbnail.png\";s:11:\"description\";s:96:\"Highlight your syntax with various styles to separate it from the text or other type of content.\";s:6:\"bundle\";s:25:\"element/syntaxHighlighter\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:65;a:10:{s:4:\"name\";s:18:\"Pageable Container\";s:3:\"tag\";s:17:\"pageableContainer\";s:5:\"group\";s:10:\"Containers\";s:10:\"previewUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/pageableContainer.1683793701.pageable-container-preview.png\";s:12:\"thumbnailUrl\";s:109:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/pageableContainer.1683793701.pageable-container-thumbnail.png\";s:11:\"description\";s:113:\"Colored slider for textual information with dot controls. Allows defining background colors per individual slide.\";s:6:\"bundle\";s:25:\"element/pageableContainer\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:66;a:10:{s:4:\"name\";s:17:\"Classic Accordion\";s:3:\"tag\";s:16:\"classicAccordion\";s:5:\"group\";s:10:\"Containers\";s:10:\"previewUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/classicAccordion.1683793818.classic-accordion-preview.png\";s:12:\"thumbnailUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/classicAccordion.1683793818.classic-accordion-thumbnail.png\";s:11:\"description\";s:66:\"Add simple accordion to your site to divide content into sections.\";s:6:\"bundle\";s:24:\"element/classicAccordion\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:67;a:10:{s:4:\"name\";s:22:\"Multiple Image Collage\";s:3:\"tag\";s:20:\"multipleImageCollage\";s:5:\"group\";s:5:\"Media\";s:10:\"previewUrl\";s:114:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/multipleImageCollage.1683793759.multiple-image-collage-preview.png\";s:12:\"thumbnailUrl\";s:116:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/multipleImageCollage.1683793759.multiple-image-collage-thumbnail.png\";s:11:\"description\";s:124:\"A simple multiple image collage with CSS transition for every image to create eye-catching effect for your product features.\";s:6:\"bundle\";s:28:\"element/multipleImageCollage\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:68;a:10:{s:4:\"name\";s:18:\"Centered Post Grid\";s:3:\"tag\";s:16:\"centeredPostGrid\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/centeredPostGrid.1726483900.centered-post-grid-preview.png\";s:12:\"thumbnailUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/centeredPostGrid.1726483900.centered-post-grid-thumbnail.png\";s:11:\"description\";s:56:\"Clean post grid with centred content and separator line.\";s:6:\"bundle\";s:24:\"element/centeredPostGrid\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:69;a:10:{s:4:\"name\";s:24:\"Featured Image Post Grid\";s:3:\"tag\";s:21:\"featuredImagePostGrid\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:112:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/featuredImagePostGrid.1726483900.featured-image-grid-preview.png\";s:12:\"thumbnailUrl\";s:114:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/featuredImagePostGrid.1726483900.featured-image-grid-thumbnail.png\";s:11:\"description\";s:81:\"Display your works or articles in a beautiful grid focused on the featured image.\";s:6:\"bundle\";s:29:\"element/featuredImagePostGrid\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:70;a:10:{s:4:\"name\";s:12:\"Video Player\";s:3:\"tag\";s:11:\"videoPlayer\";s:5:\"group\";s:5:\"Media\";s:10:\"previewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/videoPlayer.1688628181.video-player-preview.png\";s:12:\"thumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/videoPlayer.1688628181.video-player-thumbnail.png\";s:11:\"description\";s:88:\"Add self-hosted video from Media Library to your website and control \'Play\' icon design.\";s:6:\"bundle\";s:19:\"element/videoPlayer\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:71;a:10:{s:4:\"name\";s:11:\"Logo Slider\";s:3:\"tag\";s:10:\"logoSlider\";s:5:\"group\";s:5:\"Media\";s:10:\"previewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/logoSlider.1683793764.logo-slider-preview.png\";s:12:\"thumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/logoSlider.1683793764.logo-slider-thumbnail.png\";s:11:\"description\";s:81:\"Display your customers, partners, or in-media mentions with a simple logo slider.\";s:6:\"bundle\";s:18:\"element/logoSlider\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:72;a:10:{s:4:\"name\";s:18:\"Typewriter Heading\";s:3:\"tag\";s:17:\"typewriterHeading\";s:5:\"group\";s:13:\"Basic,Content\";s:10:\"previewUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/typewriterHeading.1673944682.typewriter-preview.png\";s:12:\"thumbnailUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/typewriterHeading.1673944682.typewriter-thumbnail.png\";s:11:\"description\";s:111:\"Add interactive heading with typewriter animation to drag your customer attention to specific title or keyword.\";s:6:\"bundle\";s:25:\"element/typewriterHeading\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:73;a:10:{s:4:\"name\";s:13:\"Facebook Page\";s:3:\"tag\";s:12:\"facebookPage\";s:5:\"group\";s:6:\"Social\";s:10:\"previewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/facebookPage.1683793799.facebook-page-preview.png\";s:12:\"thumbnailUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/facebookPage.1683793799.facebook-elements-thumbnail.png\";s:11:\"description\";s:183:\"The Page plugin lets you easily embed and promote any public Facebook Page on your website. Just like on Facebook, your visitors can like and share the Page without leaving your site.\";s:6:\"bundle\";s:20:\"element/facebookPage\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:74;a:10:{s:4:\"name\";s:26:\"Facebook Embedded Comments\";s:3:\"tag\";s:24:\"facebookEmbeddedComments\";s:5:\"group\";s:6:\"Social\";s:10:\"previewUrl\";s:122:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/facebookEmbeddedComments.1683793802.facebook-embedded-comments-preview.png\";s:12:\"thumbnailUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/facebookEmbeddedComments.1683793802.facebook-thumbnail.png\";s:11:\"description\";s:218:\"Embedded comments are a simple way to put public post comments - by a Page or a person on Facebook - into the content of your web site or web page. Only public comments from Facebook Pages and profiles can be embedded.\";s:6:\"bundle\";s:32:\"element/facebookEmbeddedComments\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:75;a:10:{s:4:\"name\";s:23:\"Facebook Embedded Video\";s:3:\"tag\";s:21:\"facebookEmbeddedVideo\";s:5:\"group\";s:6:\"Social\";s:10:\"previewUrl\";s:116:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/facebookEmbeddedVideo.1683793798.facebook-embedded-video-preview.png\";s:12:\"thumbnailUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/facebookEmbeddedVideo.1683793798.facebook-thumbnail.png\";s:11:\"description\";s:194:\"With the embedded video player you can easily add Facebook videos and Facebook live videos to your website. You can use any public video post by a Page or a person as video or live video source.\";s:6:\"bundle\";s:29:\"element/facebookEmbeddedVideo\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:76;a:10:{s:4:\"name\";s:13:\"Facebook Save\";s:3:\"tag\";s:12:\"facebookSave\";s:5:\"group\";s:6:\"Social\";s:10:\"previewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/facebookSave.1683793796.save-to-facebook.png\";s:12:\"thumbnailUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/facebookSave.1683793796.facebook-elements-thumbnail.png\";s:11:\"description\";s:112:\"Save items or services to a private list on Facebook, share it with friends, and receive relevant notifications.\";s:6:\"bundle\";s:20:\"element/facebookSave\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:77;a:10:{s:4:\"name\";s:14:\"Facebook Quote\";s:3:\"tag\";s:13:\"facebookQuote\";s:5:\"group\";s:6:\"Social\";s:10:\"previewUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/facebookQuote.1683793799.facebook-quote-preview.png\";s:12:\"thumbnailUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/facebookQuote.1683793799.facebook-elements-thumbnail.png\";s:11:\"description\";s:115:\"The quote lets people select text on your page and add it to their share, so they can tell a more expressive story.\";s:6:\"bundle\";s:21:\"element/facebookQuote\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:78;a:10:{s:4:\"name\";s:14:\"Facebook Share\";s:3:\"tag\";s:13:\"facebookShare\";s:5:\"group\";s:6:\"Social\";s:10:\"previewUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/facebookShare.1683793795.facebook-share-preview.png\";s:12:\"thumbnailUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/facebookShare.1683793795.facebook-share-thumbnail.png\";s:11:\"description\";s:124:\"Add a personalized message to links before sharing on their timeline, in groups, or to their friends via a Facebook Message.\";s:6:\"bundle\";s:21:\"element/facebookShare\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:79;a:10:{s:4:\"name\";s:17:\"Facebook Comments\";s:3:\"tag\";s:16:\"facebookComments\";s:5:\"group\";s:6:\"Social\";s:10:\"previewUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/facebookComments.1683793803.facebook-comments-preview.png\";s:12:\"thumbnailUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/facebookComments.1683793803.facebook-elements-thumbnail.png\";s:11:\"description\";s:93:\"The comments plugin lets people comment on content on your site using their Facebook account.\";s:6:\"bundle\";s:24:\"element/facebookComments\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:80;a:10:{s:4:\"name\";s:23:\"Facebook Embedded Posts\";s:3:\"tag\";s:21:\"facebookEmbeddedPosts\";s:5:\"group\";s:6:\"Social\";s:10:\"previewUrl\";s:116:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/facebookEmbeddedPosts.1683793800.facebook-embedded-posts-preview.png\";s:12:\"thumbnailUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/facebookEmbeddedPosts.1683793800.facebook-thumbnail.png\";s:11:\"description\";s:204:\"Embedded Posts are a simple way to put public posts - by a Page or a person on Facebook - into the content of your web site or web page. Only public posts from Facebook Pages and profiles can be embedded.\";s:6:\"bundle\";s:29:\"element/facebookEmbeddedPosts\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:81;a:10:{s:4:\"name\";s:25:\"WooCommerce Products 3.2+\";s:3:\"tag\";s:21:\"woocommerceProducts32\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceProducts32.1673944001.preview.png\";s:12:\"thumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/woocommerceProducts32.1673944001.thumbnail.png\";s:11:\"description\";s:198:\"WooCommerce element allows you to display products by post ID, SKU, categories, attributes, with support for pagination, random sorting and product tags, replacing the need for multiples shortcodes.\";s:6:\"bundle\";s:29:\"element/woocommerceProducts32\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:82;a:10:{s:4:\"name\";s:15:\"Gradient Button\";s:3:\"tag\";s:14:\"gradientButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/gradientButton.1683793786.gradient-button-preview.jpg\";s:12:\"thumbnailUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/gradientButton.1683793786.gradient-button-thumbnail.jpg\";s:11:\"description\";s:114:\"Gradient button with gradient direction and color controls. Animated hover effects with gradient direction change.\";s:6:\"bundle\";s:22:\"element/gradientButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:83;a:10:{s:4:\"name\";s:21:\"Double Outline Button\";s:3:\"tag\";s:19:\"doubleOutlineButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:112:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/doubleOutlineButton.1683793814.double-outline-button-preview.jpg\";s:12:\"thumbnailUrl\";s:114:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/doubleOutlineButton.1683793814.double-outline-button-thumbnail.jpg\";s:11:\"description\";s:123:\"Double outline button with solid color hover. Great solution for light and dark websites to keep website design consistent.\";s:6:\"bundle\";s:27:\"element/doubleOutlineButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:84;a:10:{s:4:\"name\";s:14:\"Essential Grid\";s:3:\"tag\";s:13:\"essentialGrid\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/essentialGrid.1683793804.essential-grid-preview.png\";s:12:\"thumbnailUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/essentialGrid.1683793804.essential-grid-thumbnail.png\";s:11:\"description\";s:142:\"Display grid layouts created with Essential Grid anywhere on your site (Note: Essential Grid plugin must be installed on your WordPress site).\";s:6:\"bundle\";s:21:\"element/essentialGrid\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:85;a:10:{s:4:\"name\";s:16:\"EventOn Calendar\";s:3:\"tag\";s:15:\"eventOnCalendar\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/eventOnCalendar.1683793803.eventon-calendar-preview.png\";s:12:\"thumbnailUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/eventOnCalendar.1683793803.eventon-calendar-thumbnail.png\";s:11:\"description\";s:131:\"Display EventOn calendars anywhere on your WordPress site (Note: EventOn Calendar plugin must be installed on your WordPress site).\";s:6:\"bundle\";s:23:\"element/eventOnCalendar\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:86;a:10:{s:4:\"name\";s:15:\"NextGen Gallery\";s:3:\"tag\";s:14:\"nextGenGallery\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/nextGenGallery.1683793758.nextgen-preview.png\";s:12:\"thumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/nextGenGallery.1683793758.nextgen-thumbnail.png\";s:11:\"description\";s:131:\"Add NextGen gallery to your site to display images, portfolio, etc (Note: NextGen plugin must be installed on your WordPress site).\";s:6:\"bundle\";s:22:\"element/nextGenGallery\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:87;a:10:{s:4:\"name\";s:22:\"Advanced Custom Fields\";s:3:\"tag\";s:20:\"advancedCustomFields\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/advancedCustomFields.1683793838.acf-preview.png\";s:12:\"thumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/advancedCustomFields.1683793838.acf-thumbnail.png\";s:11:\"description\";s:146:\"Output any custom field defined with Advanced Custom Fields plugin (Note: Advanced Custom Fields plugin must be installed on your WordPress site).\";s:6:\"bundle\";s:28:\"element/advancedCustomFields\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:88;a:10:{s:4:\"name\";s:11:\"Video Popup\";s:3:\"tag\";s:10:\"videoPopup\";s:5:\"group\";s:5:\"Media\";s:10:\"previewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/videoPopup.1688628183.video-popup-preview.png\";s:12:\"thumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/videoPopup.1688628183.video-popup-thumbnail.png\";s:11:\"description\";s:78:\" Add fullscreen popup video to your site and set custom icon to trigger open..\";s:6:\"bundle\";s:18:\"element/videoPopup\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:89;a:10:{s:4:\"name\";s:22:\"AddtoAny Share Buttons\";s:3:\"tag\";s:20:\"addToAnyShareButtons\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/addToAnyShareButtons.1683793839.addtoanyshare-preview.png\";s:12:\"thumbnailUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/addToAnyShareButtons.1683793839.addtoanyshare-thumbnail.png\";s:11:\"description\";s:161:\"Add social media buttons to your WordPress site with AddtoAny Share Buttons plugin (Note: AddtoAny Share Buttons plugin must be installed on your WordPress site)\";s:6:\"bundle\";s:28:\"element/addToAnyShareButtons\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:90;a:10:{s:4:\"name\";s:14:\"Envira Gallery\";s:3:\"tag\";s:13:\"enviraGallery\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/enviraGallery.1683793805.envira-gallery-preview.png\";s:12:\"thumbnailUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/enviraGallery.1683793805.envira-gallery-thumbnail.png\";s:11:\"description\";s:149:\"Add Envira gallery to your site to display your image gallery, portfolio, etc (Note: Envira Gallery plugin must be installed on your WordPress site).\";s:6:\"bundle\";s:21:\"element/enviraGallery\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:91;a:10:{s:4:\"name\";s:23:\"MailChimp for WordPress\";s:3:\"tag\";s:21:\"mailChimpForWordPress\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:109:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/mailChimpForWordPress.1683793761.mailchimp-for-wp-preview.png\";s:12:\"thumbnailUrl\";s:111:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/mailChimpForWordPress.1683793761.mailchimp-for-wp-thumbnail.png\";s:11:\"description\";s:130:\"Add MailChimp subscription form anywhere on your WordPress site (Note: MailChimp plugin must be installed on your WordPress site).\";s:6:\"bundle\";s:29:\"element/mailChimpForWordPress\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:92;a:10:{s:4:\"name\";s:8:\"WP Forms\";s:3:\"tag\";s:7:\"wpForms\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/wpForms.1635775767.wp-forms-preview.png\";s:12:\"thumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/wpForms.1635775767.wp-forms-thumbnail.png\";s:11:\"description\";s:124:\"Add custom forms created by WP Forms anywhere on your site (Note: WP Forms plugin must be installed on your WordPress site).\";s:6:\"bundle\";s:15:\"element/wpForms\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:93;a:10:{s:4:\"name\";s:11:\"Ninja Forms\";s:3:\"tag\";s:10:\"ninjaForms\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/ninjaForms.1706607266.ninja-forms-preview.png\";s:12:\"thumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/ninjaForms.1706607266.ninja-forms-thumbnail.png\";s:11:\"description\";s:136:\"Display custom forms created with Ninja Forms anywhere on your site (Note: Ninja Forms plugin must be installed on your WordPress site).\";s:6:\"bundle\";s:18:\"element/ninjaForms\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:94;a:10:{s:4:\"name\";s:15:\"Kreatura Slider\";s:3:\"tag\";s:11:\"layerSlider\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layerSlider.1683793777.kreatura-slider-preview.png\";s:12:\"thumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layerSlider.1683793777.kreatura-slider-thumbnail.png\";s:11:\"description\";s:142:\"Display slideshows created with Kreatura Slider anywhere on your site (Note: Kreatura Slider plugin must be installed on your WordPress site).\";s:6:\"bundle\";s:19:\"element/layerSlider\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:95;a:10:{s:4:\"name\";s:13:\"Gravity Forms\";s:3:\"tag\";s:12:\"gravityForms\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/gravityForms.1683793786.gravity-forms-preview.png\";s:12:\"thumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/gravityForms.1683793786.gravity-forms-thumbnail.png\";s:11:\"description\";s:139:\"Display custom forms created with Gravity Forms anywhere on your site (Note: Gravity Forms plugin must be installed on your WordPress site)\";s:6:\"bundle\";s:20:\"element/gravityForms\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:96;a:10:{s:4:\"name\";s:17:\"Slider Revolution\";s:3:\"tag\";s:16:\"sliderRevolution\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/sliderRevolution.1683793736.revolution-slider-preview.png\";s:12:\"thumbnailUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/sliderRevolution.1683793736.revolution-slider-thumbnail.png\";s:11:\"description\";s:175:\"Display slideshows and presentations created with the most popular slider plugin - Slider Revolution (Note: Slider Revolution plugin must be installed on your WordPress site).\";s:6:\"bundle\";s:24:\"element/sliderRevolution\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:97;a:10:{s:4:\"name\";s:15:\"Marquee Element\";s:3:\"tag\";s:14:\"marqueeElement\";s:5:\"group\";s:13:\"Basic,Content\";s:10:\"previewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/marqueeElement.1683793761.marquee-preview.png\";s:12:\"thumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/marqueeElement.1683793761.marquee-thumbnail.png\";s:11:\"description\";s:117:\"The most famous non-standard HTML element with beautiful marquee effect to convert any headline into a sales machine.\";s:6:\"bundle\";s:22:\"element/marqueeElement\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:98;a:10:{s:4:\"name\";s:15:\"Global Template\";s:3:\"tag\";s:14:\"globalTemplate\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/globalTemplate.1683793732.global-template-preview.png\";s:12:\"thumbnailUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/globalTemplate.1683793732.global-template-thumbnail.png\";s:11:\"description\";s:123:\"Add global templates created in Visual Composer to your layout that will automatically update across all site upon changes.\";s:6:\"bundle\";s:22:\"element/globalTemplate\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:99;a:10:{s:4:\"name\";s:21:\"Simple Call To Action\";s:3:\"tag\";s:18:\"simpleCallToAction\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/simpleCallToAction.1683793703.simple-cta-preview.png\";s:12:\"thumbnailUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/simpleCallToAction.1683793703.simple-cta-thumbnail.png\";s:11:\"description\";s:98:\"Add an eye-catching simple call to action block to drag visitor\'s attention and deliver a message.\";s:6:\"bundle\";s:26:\"element/simpleCallToAction\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:100;a:10:{s:4:\"name\";s:23:\"Semi-filled Message Box\";s:3:\"tag\";s:20:\"semiFilledMessageBox\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:115:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/semiFilledMessageBox.1683793714.semi-filled-message-box-preview.png\";s:12:\"thumbnailUrl\";s:117:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/semiFilledMessageBox.1683793714.semi-filled-message-box-thumbnail.png\";s:11:\"description\";s:87:\"Add semi-filled message box with predefined notifications or create your custom notice.\";s:6:\"bundle\";s:28:\"element/semiFilledMessageBox\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:101;a:10:{s:4:\"name\";s:18:\"Simple Message Box\";s:3:\"tag\";s:16:\"simpleMessageBox\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/simpleMessageBox.1683793712.simple-message-box-preview.png\";s:12:\"thumbnailUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/simpleMessageBox.1683793712.simple-message-box-thumbnail.png\";s:11:\"description\";s:82:\"Add simple message box with predefined notifications or create your custom notice.\";s:6:\"bundle\";s:24:\"element/simpleMessageBox\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:102;a:10:{s:4:\"name\";s:16:\"ZigZag Separator\";s:3:\"tag\";s:15:\"zigZagSeparator\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/zigZagSeparator.1658920414.zig-zag-separator-preview.png\";s:12:\"thumbnailUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/zigZagSeparator.1658920414.zig-zag-separator-thumbnail.png\";s:11:\"description\";s:69:\"A zigzag style separator for decoration or separation of the content.\";s:6:\"bundle\";s:23:\"element/zigZagSeparator\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:103;a:10:{s:4:\"name\";s:22:\"Outline Call To Action\";s:3:\"tag\";s:19:\"outlineCallToAction\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/outlineCallToAction.1683793710.outline-cta-preview.png\";s:12:\"thumbnailUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/outlineCallToAction.1683793710.outline-cta-thumbnail.png\";s:11:\"description\";s:98:\"Add an eye-catching simple call to action block to drag visitor\'s attention and deliver a message.\";s:6:\"bundle\";s:27:\"element/outlineCallToAction\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:104;a:10:{s:4:\"name\";s:16:\"Gutenberg Editor\";s:3:\"tag\";s:9:\"gutenberg\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/gutenberg.1683793785.gutenberg-preview.png\";s:12:\"thumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/gutenberg.1683793785.gutenberg-thumbnail.png\";s:11:\"description\";s:55:\"Insert Gutenberg editor in your Visual Composer layout.\";s:6:\"bundle\";s:17:\"element/gutenberg\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:105;a:10:{s:4:\"name\";s:34:\"Image Masonry Gallery With ScaleUp\";s:3:\"tag\";s:30:\"imageMasonryGalleryWithScaleUp\";s:5:\"group\";s:5:\"Media\";s:10:\"previewUrl\";s:136:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/imageMasonryGalleryWithScaleUp.1683793778.image-masonry-gallery-with-scaleup-preview.png\";s:12:\"thumbnailUrl\";s:138:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/imageMasonryGalleryWithScaleUp.1683793778.image-masonry-gallery-with-scaleup-thumbnail.png\";s:11:\"description\";s:94:\"A masonry grid type image gallery with a scale effect upon hover to catch visitors\' attention.\";s:6:\"bundle\";s:38:\"element/imageMasonryGalleryWithScaleUp\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:106;a:10:{s:4:\"name\";s:23:\"Image Gallery With Zoom\";s:3:\"tag\";s:20:\"imageGalleryWithZoom\";s:5:\"group\";s:5:\"Media\";s:10:\"previewUrl\";s:115:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/imageGalleryWithZoom.1683793779.image-gallery-with-zoom-preview.png\";s:12:\"thumbnailUrl\";s:117:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/imageGalleryWithZoom.1683793779.image-gallery-with-zoom-thumbnail.png\";s:11:\"description\";s:85:\"A grid type image gallery with a zoom effect upon hover to catch visitors\' attention.\";s:6:\"bundle\";s:28:\"element/imageGalleryWithZoom\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:107;a:10:{s:4:\"name\";s:26:\"Image Gallery With ScaleUp\";s:3:\"tag\";s:23:\"imageGalleryWithScaleUp\";s:5:\"group\";s:5:\"Media\";s:10:\"previewUrl\";s:121:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/imageGalleryWithScaleUp.1683793780.image-gallery-with-scaleup-preview.png\";s:12:\"thumbnailUrl\";s:123:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/imageGalleryWithScaleUp.1683793780.image-gallery-with-scaleup-thumbnail.png\";s:11:\"description\";s:86:\"A grid type image gallery with a scale effect upon hover to catch visitors\' attention.\";s:6:\"bundle\";s:31:\"element/imageGalleryWithScaleUp\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:108;a:10:{s:4:\"name\";s:31:\"Image Masonry Gallery With Zoom\";s:3:\"tag\";s:27:\"imageMasonryGalleryWithZoom\";s:5:\"group\";s:5:\"Media\";s:10:\"previewUrl\";s:130:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/imageMasonryGalleryWithZoom.1683793777.image-masonry-gallery-with-zoom-preview.png\";s:12:\"thumbnailUrl\";s:132:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/imageMasonryGalleryWithZoom.1683793777.image-masonry-gallery-with-zoom-thumbnail.png\";s:11:\"description\";s:93:\"A masonry grid type image gallery with a zoom effect upon hover to catch visitors\' attention.\";s:6:\"bundle\";s:35:\"element/imageMasonryGalleryWithZoom\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:109;a:10:{s:4:\"name\";s:31:\"Image Masonry Gallery With Icon\";s:3:\"tag\";s:27:\"imageMasonryGalleryWithIcon\";s:5:\"group\";s:5:\"Media\";s:10:\"previewUrl\";s:111:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/imageMasonryGalleryWithIcon.1683793718.masonry-icon-preview.png\";s:12:\"thumbnailUrl\";s:113:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/imageMasonryGalleryWithIcon.1683793718.masonry-icon-thumbnail.png\";s:11:\"description\";s:97:\"A masonry grid type image gallery with an icon displayed upon hover to catch visitors\' attention.\";s:6:\"bundle\";s:35:\"element/imageMasonryGalleryWithIcon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:110;a:10:{s:4:\"name\";s:23:\"Image Gallery With Icon\";s:3:\"tag\";s:20:\"imageGalleryWithIcon\";s:5:\"group\";s:5:\"Media\";s:10:\"previewUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/imageGalleryWithIcon.1683793725.image-gallery-preview.png\";s:12:\"thumbnailUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/imageGalleryWithIcon.1683793725.image-gallery-thumbnail.png\";s:11:\"description\";s:89:\"A grid type image gallery with an icon displayed upon hover to catch visitors\' attention.\";s:6:\"bundle\";s:28:\"element/imageGalleryWithIcon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:111;a:10:{s:4:\"name\";s:18:\"Outline Faq Toggle\";s:3:\"tag\";s:16:\"outlineFaqToggle\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/outlineFaqToggle.1683793755.outline-faq-toggle-preview.png\";s:12:\"thumbnailUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/outlineFaqToggle.1683793755.outline-faq-toggle-thumbnail.png\";s:11:\"description\";s:108:\"Toggle element for frequently asked questions (Faq) or similar structure for display of content per request.\";s:6:\"bundle\";s:24:\"element/outlineFaqToggle\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:112;a:10:{s:4:\"name\";s:11:\"Post Slider\";s:3:\"tag\";s:11:\"postsSlider\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/postsSlider.1686741997.posts-slider-preview.png\";s:12:\"thumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/postsSlider.1686741997.posts-slider-thumbnail.png\";s:11:\"description\";s:66:\"Display your posts in a simple slideshow with optional post title.\";s:6:\"bundle\";s:19:\"element/postsSlider\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:113;a:10:{s:4:\"name\";s:13:\"Progress Bars\";s:3:\"tag\";s:12:\"progressBars\";s:5:\"group\";s:6:\"Charts\";s:10:\"previewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/progressBars.1683793745.progress-bar-preview.png\";s:12:\"thumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/progressBars.1683793745.progress-bar-thumbnail.png\";s:11:\"description\";s:101:\"A simple progress bar to showcase your skills, progress, and competences in a visually appealing way.\";s:6:\"bundle\";s:20:\"element/progressBars\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:114;a:10:{s:4:\"name\";s:12:\"Button Group\";s:3:\"tag\";s:11:\"buttonGroup\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/buttonGroup.1683793827.button-group-preview.png\";s:12:\"thumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/buttonGroup.1683793827.button-group-thumbnail.png\";s:11:\"description\";s:73:\"Display different buttons in a single line with the Button Group element.\";s:6:\"bundle\";s:19:\"element/buttonGroup\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:115;a:10:{s:4:\"name\";s:10:\"Icon Group\";s:3:\"tag\";s:9:\"iconGroup\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/iconGroup.1683793780.icon-group-preview.png\";s:12:\"thumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/iconGroup.1683793780.icon-group-thumbnail.png\";s:11:\"description\";s:69:\"Display different icons in a single line with the Icon Group element.\";s:6:\"bundle\";s:17:\"element/iconGroup\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:116;a:10:{s:4:\"name\";s:13:\"Caldera Forms\";s:3:\"tag\";s:12:\"calderaForms\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/calderaForms.1683793826.caldera-forms-preview.png\";s:12:\"thumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/calderaForms.1683793826.caldera-forms-thumbnail.png\";s:11:\"description\";s:132:\"Add Caldera Forms directly from the Visual Composer. Note: Caldera Forms plugin must be installed and activated to use this element.\";s:6:\"bundle\";s:20:\"element/calderaForms\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:117;a:10:{s:4:\"name\";s:12:\"wpDataTables\";s:3:\"tag\";s:12:\"wpDataTables\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/wpDataTables.1635775766.wpdatatables-preview.png\";s:12:\"thumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/wpDataTables.1635775766.wpdatatables-thumbnail.png\";s:11:\"description\";s:136:\"Insert tables created with wpDataTables in your Visual Composer layout. Note: wpDataTables plugin must be installed to use this element.\";s:6:\"bundle\";s:20:\"element/wpDataTables\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:118;a:10:{s:4:\"name\";s:22:\"Vertical Sandwich Menu\";s:3:\"tag\";s:20:\"verticalSandwichMenu\";s:5:\"group\";s:15:\"Header & Footer\";s:10:\"previewUrl\";s:114:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/verticalSandwichMenu.1706607265.vertical-sandwich-menu-preview.png\";s:12:\"thumbnailUrl\";s:116:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/verticalSandwichMenu.1706607265.vertical-sandwich-menu-thumbnail.png\";s:11:\"description\";s:49:\"Vertical sandwich menu with hover line animation.\";s:6:\"bundle\";s:28:\"element/verticalSandwichMenu\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:119;a:10:{s:4:\"name\";s:19:\"Basic Shadow Button\";s:3:\"tag\";s:17:\"basicShadowButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/basicShadowButton.1683793831.basic-shadow-button-preview.png\";s:12:\"thumbnailUrl\";s:110:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/basicShadowButton.1683793831.basic-shadow-button-thumbnail.png\";s:11:\"description\";s:98:\"A simple button with shadow effect that helps button to stand out and gives website a perspective.\";s:6:\"bundle\";s:25:\"element/basicShadowButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:120;a:10:{s:4:\"name\";s:18:\"SlideOut Post Grid\";s:3:\"tag\";s:16:\"slideOutPostGrid\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/slideOutPostGrid.1725879705.slideout-post-grid-preview.png\";s:12:\"thumbnailUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/slideOutPostGrid.1725879705.slideout-post-grid-thumbnail.png\";s:11:\"description\";s:77:\"Post Grid with a background image and SlideOut animation for button on hover.\";s:6:\"bundle\";s:24:\"element/slideOutPostGrid\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:121;a:10:{s:4:\"name\";s:11:\"CaptainForm\";s:3:\"tag\";s:11:\"captainForm\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/captainForm.1683793825.captainform-preview.png\";s:12:\"thumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/captainForm.1683793825.captainform-thumbnail.png\";s:11:\"description\";s:132:\"Add CaptainForm to your Visual Composer layout. Note: You will need to have CaptainForm installed to use this compatibility element.\";s:6:\"bundle\";s:19:\"element/captainForm\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:122;a:10:{s:4:\"name\";s:19:\"Timeline With Icons\";s:3:\"tag\";s:17:\"timelineWithIcons\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/timelineWithIcons.1673943997.timeline-with-icons-preview.png\";s:12:\"thumbnailUrl\";s:110:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/timelineWithIcons.1673943997.timeline-with-icons-thumbnail.png\";s:11:\"description\";s:78:\"A vertical timeline with icons to showcase your progress or historical events.\";s:6:\"bundle\";s:25:\"element/timelineWithIcons\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:123;a:10:{s:4:\"name\";s:24:\"Call To Action With Icon\";s:3:\"tag\";s:20:\"callToActionWithIcon\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:116:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/callToActionWithIcon.1683793729.preview-call-to-action-with-icon.png\";s:12:\"thumbnailUrl\";s:118:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/callToActionWithIcon.1683793729.thumbnail-call-to-action-with-icon.png\";s:11:\"description\";s:112:\"Add an eye-catching call to action block to immediately drag visitor\'s attention and deliver a specific message.\";s:6:\"bundle\";s:28:\"element/callToActionWithIcon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:124;a:10:{s:4:\"name\";s:14:\"Banner Element\";s:3:\"tag\";s:13:\"bannerElement\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/bannerElement.1683793833.banner-element-preview.png\";s:12:\"thumbnailUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/bannerElement.1683793833.banner-element-thumbnail.png\";s:11:\"description\";s:100:\"Add image banners to your page that will load randomly - only one banner will be loaded at the time.\";s:6:\"bundle\";s:21:\"element/bannerElement\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:125;a:10:{s:4:\"name\";s:18:\"Grow Shadow Button\";s:3:\"tag\";s:16:\"growShadowButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/growShadowButton.1683793730.grow-shadow-button-preview.png\";s:12:\"thumbnailUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/growShadowButton.1683793730.grow-shadow-button-thumbnail.png\";s:11:\"description\";s:51:\"A simple round button with smooth shadow animation.\";s:6:\"bundle\";s:24:\"element/growShadowButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:126;a:10:{s:4:\"name\";s:14:\"Side Post Grid\";s:3:\"tag\";s:12:\"sidePostGrid\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/sidePostGrid.1725879705.side-post-grid-preview.png\";s:12:\"thumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/sidePostGrid.1725879705.side-post-grid-thumbnail.png\";s:11:\"description\";s:67:\"A post grid with featured image position on the left or right part.\";s:6:\"bundle\";s:20:\"element/sidePostGrid\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:127;a:10:{s:4:\"name\";s:20:\"Social Profile Icons\";s:3:\"tag\";s:18:\"socialProfileIcons\";s:5:\"group\";s:6:\"Social\";s:10:\"previewUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/socialProfileIcons.1673944671.social-icons-preview.png\";s:12:\"thumbnailUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/socialProfileIcons.1673944671.social-icons-thumbnail.png\";s:11:\"description\";s:78:\"Small icons of the most popular social networks with original colors on hover.\";s:6:\"bundle\";s:26:\"element/socialProfileIcons\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:128;a:10:{s:4:\"name\";s:14:\"News Post Grid\";s:3:\"tag\";s:12:\"newsPostGrid\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/newsPostGrid.1725879697.news-post-grid-preview.png\";s:12:\"thumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/newsPostGrid.1725879697.news-post-grid-thumbnail.png\";s:11:\"description\";s:63:\"A post grid element that is perfect for news portals and blogs.\";s:6:\"bundle\";s:20:\"element/newsPostGrid\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:129;a:10:{s:4:\"name\";s:10:\"Counter Up\";s:3:\"tag\";s:9:\"counterUp\";s:5:\"group\";s:7:\"Counter\";s:10:\"previewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/counterUp.1683793814.countup-preview.png\";s:12:\"thumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/counterUp.1683793814.countup-thumbnail.png\";s:11:\"description\";s:86:\"A simple number count up element to show your progress with an eye-catching animation.\";s:6:\"bundle\";s:17:\"element/counterUp\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:130;a:10:{s:4:\"name\";s:18:\"Sandwich Side Menu\";s:3:\"tag\";s:16:\"sandwichSideMenu\";s:5:\"group\";s:15:\"Header & Footer\";s:10:\"previewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/sandwichSideMenu.1706607264.side-menu-preview.png\";s:12:\"thumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/sandwichSideMenu.1706607264.side-menu-thumbnail.png\";s:11:\"description\";s:50:\"A sandwich menu with side menu display navigation.\";s:6:\"bundle\";s:24:\"element/sandwichSideMenu\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:131;a:10:{s:4:\"name\";s:17:\"Basic Testimonial\";s:3:\"tag\";s:16:\"basicTestimonial\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/basicTestimonial.1683793829.basic-testimonials-preview.png\";s:12:\"thumbnailUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/basicTestimonial.1683793829.basic-testimonials-thumbnail.png\";s:11:\"description\";s:87:\"Show testimonials from your customers in a beautiful way and convince your new clients.\";s:6:\"bundle\";s:24:\"element/basicTestimonial\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:132;a:10:{s:4:\"name\";s:11:\"Hover Image\";s:3:\"tag\";s:10:\"hoverImage\";s:5:\"group\";s:19:\"Basic,Media,Content\";s:10:\"previewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/hoverImage.1683793784.hover-image-preview.png\";s:12:\"thumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/hoverImage.1683793784.hover-image-thumbnail.png\";s:11:\"description\";s:60:\"A two-image element that changes the image upon mouse hover.\";s:6:\"bundle\";s:18:\"element/hoverImage\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:133;a:10:{s:4:\"name\";s:13:\"Simple Search\";s:3:\"tag\";s:12:\"simpleSearch\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/simpleSearch.1683793702.search-widget-preview.png\";s:12:\"thumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/simpleSearch.1683793702.search-widget-thumbnail.png\";s:11:\"description\";s:75:\"Add WordPress search widget to your page and style search field appearance.\";s:6:\"bundle\";s:20:\"element/simpleSearch\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:134;a:10:{s:4:\"name\";s:15:\"Countdown Timer\";s:3:\"tag\";s:14:\"countdownTimer\";s:5:\"group\";s:7:\"Counter\";s:10:\"previewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/countdownTimer.1725879708.countdown-preview.png\";s:12:\"thumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/countdownTimer.1725879708.countdown-thumbnail.png\";s:11:\"description\";s:99:\" A countdown timer with month, days, hours, minutes, and seconds to inform about your grand launch.\";s:6:\"bundle\";s:22:\"element/countdownTimer\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:135;a:10:{s:4:\"name\";s:18:\"Timeline Slideshow\";s:3:\"tag\";s:17:\"timelineSlideshow\";s:5:\"group\";s:5:\"Media\";s:10:\"previewUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/timelineSlideshow.1673944679.timeline-slideshow-preview.png\";s:12:\"thumbnailUrl\";s:109:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/timelineSlideshow.1673944679.timeline-slideshow-thumbnail.png\";s:11:\"description\";s:75:\"A rich slideshow element with time and content control for separate slides.\";s:6:\"bundle\";s:25:\"element/timelineSlideshow\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:136;a:10:{s:4:\"name\";s:22:\"Cart Icon With Counter\";s:3:\"tag\";s:19:\"cartIconWithCounter\";s:5:\"group\";s:11:\"WooCommerce\";s:10:\"previewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/cartIconWithCounter.1683793825.cart-preview.png\";s:12:\"thumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/cartIconWithCounter.1683793825.cart-thumbnail.png\";s:11:\"description\";s:72:\"Shopping cart icon with a counter to display products added to the cart.\";s:6:\"bundle\";s:27:\"element/cartIconWithCounter\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:137;a:10:{s:4:\"name\";s:14:\"3 Color Button\";s:3:\"tag\";s:12:\"3ColorButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/3ColorButton.1683793840.3-color-button-preview.png\";s:12:\"thumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/3ColorButton.1683793840.3-color-button-thumbnail.png\";s:11:\"description\";s:61:\"A button with three colored stripes that animates upon hover.\";s:6:\"bundle\";s:20:\"element/3ColorButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:138;a:10:{s:4:\"name\";s:17:\"Profile With Icon\";s:3:\"tag\";s:15:\"profileWithIcon\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/profileWithIcon.1683793747.profile-with-icon-preview.png\";s:12:\"thumbnailUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/profileWithIcon.1683793747.profile-with-icon-thumbnail.png\";s:11:\"description\";s:53:\"A profile element with an icon to showcase your team.\";s:6:\"bundle\";s:23:\"element/profileWithIcon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:139;a:10:{s:4:\"name\";s:26:\"Background Image Post Grid\";s:3:\"tag\";s:23:\"backgroundImagePostGrid\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:113:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/backgroundImagePostGrid.1726483899.bg-image-post-grid-preview.png\";s:12:\"thumbnailUrl\";s:115:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/backgroundImagePostGrid.1726483899.bg-image-post-grid-thumbnail.png\";s:11:\"description\";s:69:\"A post grid element with a featured image used as a background image.\";s:6:\"bundle\";s:31:\"element/backgroundImagePostGrid\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:140;a:10:{s:4:\"name\";s:17:\"SoundCloud Player\";s:3:\"tag\";s:16:\"soundcloudPlayer\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/soundcloudPlayer.1673944671.soundcloud-element-preview.png\";s:12:\"thumbnailUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/soundcloudPlayer.1673944671.soundcloud-element-thumbnail.png\";s:11:\"description\";s:55:\"Add the SoundCloud embed player to your WordPress site.\";s:6:\"bundle\";s:24:\"element/soundcloudPlayer\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:141;a:10:{s:4:\"name\";s:12:\"Phone Mockup\";s:3:\"tag\";s:11:\"phoneMockup\";s:5:\"group\";s:19:\"Basic,Media,Content\";s:10:\"previewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/phoneMockup.1683793752.iphone-mockup-preview.png\";s:12:\"thumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/phoneMockup.1683793752.iphone-mockup-thumbnail.png\";s:11:\"description\";s:65:\"Display your artworks, web designs or app design in Phone mockup.\";s:6:\"bundle\";s:19:\"element/phoneMockup\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:142;a:10:{s:4:\"name\";s:18:\"Double Text Button\";s:3:\"tag\";s:16:\"doubleTextButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/doubleTextButton.1683793808.double-text-button-preview.png\";s:12:\"thumbnailUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/doubleTextButton.1683793808.double-text-button-thumbnail.png\";s:11:\"description\";s:75:\"A simple button with slide-out effect upon hover to display different text.\";s:6:\"bundle\";s:24:\"element/doubleTextButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:143;a:10:{s:4:\"name\";s:32:\"TranslatePress Language Switcher\";s:3:\"tag\";s:30:\"translatePressLanguageSwitcher\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:116:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/translatePressLanguageSwitcher.1673943997.preview-translatepress.png\";s:12:\"thumbnailUrl\";s:118:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/translatePressLanguageSwitcher.1673943997.thumbnail-translatepress.png\";s:11:\"description\";s:123:\"Add TranslatePress Language Switcher to your layout (Note: TranslatePress plugin must be installed on your WordPress site).\";s:6:\"bundle\";s:38:\"element/translatePressLanguageSwitcher\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:144;a:10:{s:4:\"name\";s:18:\"Post Grid With Box\";s:3:\"tag\";s:15:\"postGridWithBox\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/postGridWithBox.1725879698.post-grid-with-box-preview.png\";s:12:\"thumbnailUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/postGridWithBox.1725879698.post-grid-with-box-thumbnail.png\";s:11:\"description\";s:45:\"A post grid element with a slide-out excerpt.\";s:6:\"bundle\";s:23:\"element/postGridWithBox\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:145;a:10:{s:4:\"name\";s:14:\"Browser Mockup\";s:3:\"tag\";s:13:\"browserMockup\";s:5:\"group\";s:19:\"Basic,Media,Content\";s:10:\"previewUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/browserMockup.1683793827.browser-mockup-preview.png\";s:12:\"thumbnailUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/browserMockup.1683793827.browser-mockup-thumbnail.png\";s:11:\"description\";s:40:\"Display your design in a browser mockup.\";s:6:\"bundle\";s:21:\"element/browserMockup\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:146;a:10:{s:4:\"name\";s:21:\"Parallax Single Image\";s:3:\"tag\";s:19:\"parallaxSingleImage\";s:5:\"group\";s:19:\"Basic,Media,Content\";s:10:\"previewUrl\";s:112:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/parallaxSingleImage.1683793753.Parallax-Single-Image-Preview.png\";s:12:\"thumbnailUrl\";s:114:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/parallaxSingleImage.1683793753.Parallax-Single-Image-Thumbnail.png\";s:11:\"description\";s:86:\"A single image with adjustable parallax effect to grab the attention of your visitors.\";s:6:\"bundle\";s:27:\"element/parallaxSingleImage\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:147;a:10:{s:4:\"name\";s:17:\"Post Slider Block\";s:3:\"tag\";s:15:\"postSliderBlock\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/postSliderBlock.1725879699.post-slider-block-preview.png\";s:12:\"thumbnailUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/postSliderBlock.1725879699.post-slider-block-thumbnail.png\";s:11:\"description\";s:60:\"A post slideshow element with shadow and hover zoom options.\";s:6:\"bundle\";s:23:\"element/postSliderBlock\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:148;a:10:{s:4:\"name\";s:19:\"Simple Contact Form\";s:3:\"tag\";s:17:\"simpleContactForm\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/simpleContactForm.1683793723.simple-contact-form-preview.png\";s:12:\"thumbnailUrl\";s:110:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/simpleContactForm.1683793723.simple-contact-form-thumbnail.png\";s:11:\"description\";s:75:\"Add a simple contact form to your WordPress site so people can contact you.\";s:6:\"bundle\";s:25:\"element/simpleContactForm\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:149;a:10:{s:4:\"name\";s:20:\"Food and Drinks Menu\";s:3:\"tag\";s:17:\"foodAndDrinksMenu\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:109:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/foodAndDrinksMenu.1683793792.food-and-drinks-menu-preview.png\";s:12:\"thumbnailUrl\";s:111:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/foodAndDrinksMenu.1683793792.food-and-drinks-menu-thumbnail.png\";s:11:\"description\";s:43:\"Display the menu of your restaurant or bar.\";s:6:\"bundle\";s:25:\"element/foodAndDrinksMenu\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:150;a:10:{s:4:\"name\";s:21:\"Call to Action Button\";s:3:\"tag\";s:18:\"callToActionButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:111:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/callToActionButton.1683793826.call-to-action-button-preview.png\";s:12:\"thumbnailUrl\";s:113:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/callToActionButton.1683793826.call-to-action-button-thumbnail.png\";s:11:\"description\";s:78:\"A perfect marketing button with an eye-catching title, icon, and description. \";s:6:\"bundle\";s:26:\"element/callToActionButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:151;a:10:{s:4:\"name\";s:12:\"Star Ranking\";s:3:\"tag\";s:11:\"starRanking\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/starRanking.1683793730.star-ranking-preview.png\";s:12:\"thumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/starRanking.1683793730.star-ranking-thumbnail.png\";s:11:\"description\";s:80:\"Display the rank of your product or services with a simple star ranking element.\";s:6:\"bundle\";s:19:\"element/starRanking\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:152;a:10:{s:4:\"name\";s:20:\"Shadow Pricing Table\";s:3:\"tag\";s:18:\"shadowPricingTable\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:110:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/shadowPricingTable.1683793720.shadow-pricing-table-preview.png\";s:12:\"thumbnailUrl\";s:112:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/shadowPricingTable.1683793720.shadow-pricing-table-thumbnail.png\";s:11:\"description\";s:46:\"A pricing table element with image and shadow.\";s:6:\"bundle\";s:26:\"element/shadowPricingTable\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:153;a:10:{s:4:\"name\";s:14:\"Content Slider\";s:3:\"tag\";s:13:\"contentSlider\";s:5:\"group\";s:10:\"Containers\";s:10:\"previewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/contentSlider.1683793816.content-slide-preview.png\";s:12:\"thumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/contentSlider.1683793816.content-slide-thumbnail.png\";s:11:\"description\";s:60:\"A multiple page slider that can contain any type of content.\";s:6:\"bundle\";s:21:\"element/contentSlider\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:154;a:10:{s:4:\"name\";s:17:\"Star Testimonials\";s:3:\"tag\";s:16:\"starTestimonials\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/starTestimonials.1683793724.star-testimonials-preview.png\";s:12:\"thumbnailUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/starTestimonials.1683793724.star-testimonials-thumbnail.png\";s:11:\"description\";s:72:\"Display testimonials for your products and services with a star ranking.\";s:6:\"bundle\";s:24:\"element/starTestimonials\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:155;a:10:{s:4:\"name\";s:11:\"Icon Button\";s:3:\"tag\";s:10:\"iconButton\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/iconButton.1688628182.icon-button-preview.png\";s:12:\"thumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/iconButton.1688628182.icon-button-thumbnail.png\";s:11:\"description\";s:69:\"A simple button with icon and title to be used as a secondary button.\";s:6:\"bundle\";s:18:\"element/iconButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:156;a:10:{s:4:\"name\";s:16:\"Toggle Container\";s:3:\"tag\";s:15:\"toggleContainer\";s:5:\"group\";s:10:\"Containers\";s:10:\"previewUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/toggleContainer.1673944679.toggle-container-preview.png\";s:12:\"thumbnailUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/toggleContainer.1673944679.toggle-container-thumbnail.png\";s:11:\"description\";s:75:\"Display variations of your product/service pricing with a toggle container.\";s:6:\"bundle\";s:23:\"element/toggleContainer\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:157;a:10:{s:4:\"name\";s:9:\"FAQ Group\";s:3:\"tag\";s:8:\"faqGroup\";s:5:\"group\";s:10:\"Containers\";s:10:\"previewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/faqGroup.1683793794.faq-group-preview.png\";s:12:\"thumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/faqGroup.1683793794.faq-group-thumbnail.png\";s:11:\"description\";s:98:\"Display frequently asked questions (FAQ) or any other information in a beautiful and animated way.\";s:6:\"bundle\";s:16:\"element/faqGroup\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:158;a:10:{s:4:\"name\";s:13:\"Link Dropdown\";s:3:\"tag\";s:12:\"linkDropdown\";s:5:\"group\";s:7:\"Buttons\";s:10:\"previewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/linkDropdown.1683793764.link-dropdown-preview.png\";s:12:\"thumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/linkDropdown.1683793764.link-dropdown-thumbnail.png\";s:11:\"description\";s:82:\"A custom dropdown with links that can lead visitors to a specific section or page.\";s:6:\"bundle\";s:20:\"element/linkDropdown\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:159;a:10:{s:4:\"name\";s:19:\"Portfolio Post Grid\";s:3:\"tag\";s:17:\"portfolioPostGrid\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/portfolioPostGrid.1683793750.preview-portfolio-post-grid.png\";s:12:\"thumbnailUrl\";s:110:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/portfolioPostGrid.1683793750.thumbnail-portfolio-post-grid.png\";s:11:\"description\";s:100:\"Display your portfolio items, news, and articles with a beautiful portfolio style post grid element.\";s:6:\"bundle\";s:25:\"element/portfolioPostGrid\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:160;a:10:{s:4:\"name\";s:12:\"Double Title\";s:3:\"tag\";s:11:\"doubleTitle\";s:5:\"group\";s:13:\"Basic,Content\";s:10:\"previewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/doubleTitle.1683793808.double-title-preview.png\";s:12:\"thumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/doubleTitle.1683793808.double-title-thumbnail.png\";s:11:\"description\";s:67:\"A title element that consists of two texts on front and background.\";s:6:\"bundle\";s:19:\"element/doubleTitle\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:161;a:10:{s:4:\"name\";s:27:\"Post Grid With Hover Button\";s:3:\"tag\";s:23:\"postGridWithHoverButton\";s:5:\"group\";s:7:\"Content\";s:10:\"previewUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/postGridWithHoverButton.1725879699.grid-preview.png\";s:12:\"thumbnailUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/postGridWithHoverButton.1725879699.grid-thumbnail.png\";s:11:\"description\";s:86:\"A simple post grid element with featured image, post title, and button on hover state.\";s:6:\"bundle\";s:31:\"element/postGridWithHoverButton\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:162;a:10:{s:4:\"name\";s:13:\"Comments Area\";s:3:\"tag\";s:20:\"layoutWpCommentsArea\";s:5:\"group\";s:13:\"Theme Builder\";s:10:\"previewUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutWpCommentsArea.1683793765.comments-area-preview.png\";s:12:\"thumbnailUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutWpCommentsArea.1683793765.comments-area-thumbnail.png\";s:11:\"description\";s:49:\"Define a comments area for a post or page layout.\";s:6:\"bundle\";s:28:\"element/layoutWpCommentsArea\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:163;a:10:{s:4:\"name\";s:17:\"Mono Social Icons\";s:3:\"tag\";s:15:\"monoSocialIcons\";s:5:\"group\";s:6:\"Social\";s:10:\"previewUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/monoSocialIcons.1683793759.mono-social-icons-preview.png\";s:12:\"thumbnailUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/monoSocialIcons.1683793759.mono-social-icons-thumbnail.png\";s:11:\"description\";s:57:\"Add mono-styled social icons with links to your profiles.\";s:6:\"bundle\";s:23:\"element/monoSocialIcons\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:164;a:10:{s:4:\"name\";s:5:\"Giphy\";s:3:\"tag\";s:5:\"giphy\";s:5:\"group\";s:19:\"Basic,Media,Content\";s:10:\"previewUrl\";s:82:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/giphy.1683793787.giphy-preview.png\";s:12:\"thumbnailUrl\";s:84:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/giphy.1683793787.giphy-thumbnail.png\";s:11:\"description\";s:53:\"Add GIF files with animations to your WordPress site.\";s:6:\"bundle\";s:13:\"element/giphy\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:165;a:10:{s:4:\"name\";s:13:\"GIF Animation\";s:3:\"tag\";s:12:\"gifAnimation\";s:5:\"group\";s:19:\"Basic,Media,Content\";s:10:\"previewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/gifAnimation.1683793788.gif-preview.png\";s:12:\"thumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/gifAnimation.1683793788.gif-thumbnail.png\";s:11:\"description\";s:53:\"Add GIF files with animations to your WordPress site.\";s:6:\"bundle\";s:20:\"element/gifAnimation\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:166;a:10:{s:4:\"name\";s:12:\"Content Area\";s:3:\"tag\";s:17:\"layoutContentArea\";s:5:\"group\";s:13:\"Theme Builder\";s:10:\"previewUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutContentArea.1683793776.content-area-preview.png\";s:12:\"thumbnailUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutContentArea.1683793776.content-area-thumbnail.png\";s:11:\"description\";s:126:\"Define the content area part in your template where you will be able to use a default WordPress editor or the website builder.\";s:6:\"bundle\";s:25:\"element/layoutContentArea\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:167;a:10:{s:4:\"name\";s:11:\"Post Author\";s:3:\"tag\";s:16:\"layoutPostAuthor\";s:5:\"group\";s:13:\"Theme Builder\";s:10:\"previewUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostAuthor.1683793775.post-author-preview.png\";s:12:\"thumbnailUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostAuthor.1683793775.post-author-thumbnail.png\";s:11:\"description\";s:112:\"This element is a dynamic placeholder of the Layout Builder that will be replaced on the actual posts and pages.\";s:6:\"bundle\";s:24:\"element/layoutPostAuthor\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:168;a:10:{s:4:\"name\";s:15:\"Post Author Bio\";s:3:\"tag\";s:19:\"layoutPostAuthorBio\";s:5:\"group\";s:13:\"Theme Builder\";s:10:\"previewUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostAuthorBio.1683793774.post-author-bio-preview.png\";s:12:\"thumbnailUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostAuthorBio.1683793774.post-author-bio-thumbnail.png\";s:11:\"description\";s:112:\"This element is a dynamic placeholder of the Layout Builder that will be replaced on the actual posts and pages.\";s:6:\"bundle\";s:27:\"element/layoutPostAuthorBio\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:169;a:10:{s:4:\"name\";s:9:\"Post Date\";s:3:\"tag\";s:14:\"layoutPostDate\";s:5:\"group\";s:13:\"Theme Builder\";s:10:\"previewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostDate.1683793772.post-date-preview.png\";s:12:\"thumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostDate.1683793772.post-date-thumbnail.png\";s:11:\"description\";s:112:\"This element is a dynamic placeholder of the Layout Builder that will be replaced on the actual posts and pages.\";s:6:\"bundle\";s:22:\"element/layoutPostDate\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:170;a:10:{s:4:\"name\";s:12:\"Post Excerpt\";s:3:\"tag\";s:17:\"layoutPostExcerpt\";s:5:\"group\";s:13:\"Theme Builder\";s:10:\"previewUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostExcerpt.1683793771.post-excerpt-preview.png\";s:12:\"thumbnailUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostExcerpt.1683793771.post-excerpt-thumbnail.png\";s:11:\"description\";s:112:\"This element is a dynamic placeholder of the Layout Builder that will be replaced on the actual posts and pages.\";s:6:\"bundle\";s:25:\"element/layoutPostExcerpt\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:171;a:10:{s:4:\"name\";s:10:\"Post Title\";s:3:\"tag\";s:15:\"layoutPostTitle\";s:5:\"group\";s:13:\"Theme Builder\";s:10:\"previewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostTitle.1683793766.post-title-preview.png\";s:12:\"thumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostTitle.1683793766.post-title-thumbnail.png\";s:11:\"description\";s:112:\"This element is a dynamic placeholder of the Layout Builder that will be replaced on the actual posts and pages.\";s:6:\"bundle\";s:23:\"element/layoutPostTitle\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:172;a:10:{s:4:\"name\";s:13:\"Custom Fields\";s:3:\"tag\";s:22:\"layoutPostCustomFields\";s:5:\"group\";s:13:\"Theme Builder\";s:10:\"previewUrl\";s:112:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostCustomFields.1683793772.post-custom-fields-preview.png\";s:12:\"thumbnailUrl\";s:114:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostCustomFields.1683793772.post-custom-fields-thumbnail.png\";s:11:\"description\";s:112:\"This element is a dynamic placeholder of the Layout Builder that will be replaced on the actual posts and pages.\";s:6:\"bundle\";s:30:\"element/layoutPostCustomFields\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:173;a:10:{s:4:\"name\";s:15:\"Post Categories\";s:3:\"tag\";s:20:\"layoutPostCategories\";s:5:\"group\";s:13:\"Theme Builder\";s:10:\"previewUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostCategories.1725879709.post-categories-preview.png\";s:12:\"thumbnailUrl\";s:109:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostCategories.1725879709.post-categories-thumbnail.png\";s:11:\"description\";s:112:\"This element is a dynamic placeholder of the Layout Builder that will be replaced on the actual posts and pages.\";s:6:\"bundle\";s:28:\"element/layoutPostCategories\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:174;a:10:{s:4:\"name\";s:9:\"Post Tags\";s:3:\"tag\";s:14:\"layoutPostTags\";s:5:\"group\";s:13:\"Theme Builder\";s:10:\"previewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostTags.1725879709.post-tags-preview.png\";s:12:\"thumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostTags.1725879709.post-tags-thumbnail.png\";s:11:\"description\";s:112:\"This element is a dynamic placeholder of the Layout Builder that will be replaced on the actual posts and pages.\";s:6:\"bundle\";s:22:\"element/layoutPostTags\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:175;a:10:{s:4:\"name\";s:17:\"Post Author Photo\";s:3:\"tag\";s:21:\"layoutPostAuthorImage\";s:5:\"group\";s:13:\"Theme Builder\";s:10:\"previewUrl\";s:110:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostAuthorImage.1683793774.post-author-image-preview.png\";s:12:\"thumbnailUrl\";s:112:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostAuthorImage.1683793774.post-author-image-thumbnail.png\";s:11:\"description\";s:125:\"This element is a dynamic placeholder of the Layout Builder that will be replaced with the authors photo on the actual posts.\";s:6:\"bundle\";s:29:\"element/layoutPostAuthorImage\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:176;a:10:{s:4:\"name\";s:14:\"Featured Image\";s:3:\"tag\";s:23:\"layoutPostFeaturedImage\";s:5:\"group\";s:13:\"Theme Builder\";s:10:\"previewUrl\";s:109:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostFeaturedImage.1683793768.featured-image-preview.png\";s:12:\"thumbnailUrl\";s:111:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostFeaturedImage.1683793768.featured-image-thumbnail.png\";s:11:\"description\";s:126:\"This element is a dynamic placeholder of the Layout Builder that will be replaced with the featured image on the actual posts.\";s:6:\"bundle\";s:31:\"element/layoutPostFeaturedImage\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:177;a:10:{s:4:\"name\";s:9:\"Post List\";s:3:\"tag\";s:14:\"layoutPostList\";s:5:\"group\";s:13:\"Theme Builder\";s:10:\"previewUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostList.1725879697.layout-post-list-preview.png\";s:12:\"thumbnailUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/layoutPostList.1725879697.layout-post-list-thumbnail.png\";s:11:\"description\";s:120:\"Add a post list to your archive layout - it will be replaced with an actual post list when assigned to the archive page.\";s:6:\"bundle\";s:22:\"element/layoutPostList\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:178;a:10:{s:4:\"name\";s:13:\"HubSpot Forms\";s:3:\"tag\";s:12:\"hubSpotForms\";s:5:\"group\";s:9:\"WordPress\";s:10:\"previewUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/hubSpotForms.1683793783.hubspot-element-preview.png\";s:12:\"thumbnailUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/hubSpotForms.1683793783.hubspot-element-thumbnail.png\";s:11:\"description\";s:41:\"Display HubSpot forms in Visual Composer.\";s:6:\"bundle\";s:20:\"element/hubSpotForms\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}i:179;a:10:{s:4:\"name\";s:3:\"Div\";s:3:\"tag\";s:3:\"div\";s:5:\"group\";s:3:\"Div\";s:10:\"previewUrl\";s:78:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/div.1684153907.preview-div.png\";s:12:\"thumbnailUrl\";s:80:\"https://cdn.hub.visualcomposer.com/vcwb-teasers/div.1684153907.thumbnail-div.png\";s:11:\"description\";s:53:\"A simple div container in the Visual Composer editor.\";s:6:\"bundle\";s:11:\"element/div\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}}}}}','auto'),
(237366,'vcv-hubAction:hubTeaser','174729725399999.0.1033','auto'),
(237367,'vcv-hubTeaserAddons','a:13:{i:0;a:10:{s:6:\"bundle\";s:20:\"addon/globalTemplate\";s:3:\"tag\";s:14:\"globalTemplate\";s:4:\"name\";s:15:\"Global Template\";s:16:\"metaThumbnailUrl\";s:109:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/globalTemplate.1752059221.thumbnail-global-template.png\";s:14:\"metaPreviewUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/globalTemplate.1752059221.preview-global-template.png\";s:15:\"metaDescription\";s:123:\"Add global templates created in Visual Composer to your layout that will automatically update across all site upon changes.\";s:17:\"metaAddonImageUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/globalTemplate.1752059221.global-template.png\";s:4:\"type\";s:5:\"addon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;}i:1;a:10:{s:6:\"bundle\";s:18:\"addon/exportImport\";s:3:\"tag\";s:12:\"exportImport\";s:4:\"name\";s:13:\"Export/Import\";s:16:\"metaThumbnailUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/exportImport.1683793735.export-import-thumbnail.png\";s:14:\"metaPreviewUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/exportImport.1683793735.export-import-preview.png\";s:15:\"metaDescription\";s:170:\"Export and Import your Visual Composer templates, headers, footers, and sidebars between different sites. You can access export/import option in Visual Composer Settings.\";s:17:\"metaAddonImageUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/exportImport.1683793735.export-import.png\";s:4:\"type\";s:5:\"addon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;}i:2;a:10:{s:6:\"bundle\";s:20:\"addon/templateWidget\";s:3:\"tag\";s:14:\"templateWidget\";s:4:\"name\";s:15:\"Template Widget\";s:16:\"metaThumbnailUrl\";s:112:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/templateWidget.1752059222.vcwb-custom-widget-thumbnail.png\";s:14:\"metaPreviewUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/templateWidget.1752059222.vcwb-custom-widget.png\";s:15:\"metaDescription\";s:72:\"Add Visual Composer templates in your theme sidebar via a custom widget.\";s:17:\"metaAddonImageUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/templateWidget.1752059222.template-widget.png\";s:4:\"type\";s:5:\"addon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;}i:3;a:10:{s:6:\"bundle\";s:28:\"addon/gutenbergTemplateBlock\";s:3:\"tag\";s:22:\"gutenbergTemplateBlock\";s:4:\"name\";s:24:\"Gutenberg Template Block\";s:16:\"metaThumbnailUrl\";s:117:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/gutenbergTemplateBlock.1659438309.gutenberg-addon-thumbnail.png\";s:14:\"metaPreviewUrl\";s:115:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/gutenbergTemplateBlock.1659438309.gutenberg-addon-preview.png\";s:15:\"metaDescription\";s:93:\"Add any Visual Composer template to your Gutenberg layout via Visual Composer Template block.\";s:17:\"metaAddonImageUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/gutenbergTemplateBlock.1659438309.gutenberg-block.png\";s:4:\"type\";s:5:\"addon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;}i:4;a:10:{s:6:\"bundle\";s:19:\"addon/dynamicFields\";s:3:\"tag\";s:13:\"dynamicFields\";s:4:\"name\";s:15:\"Dynamic Content\";s:16:\"metaThumbnailUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/dynamicFields.1706607272.dynamic-fields-thumbnail.png\";s:14:\"metaPreviewUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/dynamicFields.1706607272.dynamic-fields-preview.png\";s:15:\"metaDescription\";s:127:\"Insert dynamic content like post title, featured image, other WordPress fields, and custom fields in your pages without coding.\";s:17:\"metaAddonImageUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/dynamicFields.1706607272.dynamic-content.png\";s:4:\"type\";s:5:\"addon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;}i:5;a:10:{s:6:\"bundle\";s:21:\"addon/maintenanceMode\";s:3:\"tag\";s:15:\"maintenanceMode\";s:4:\"name\";s:16:\"Maintenance Mode\";s:16:\"metaThumbnailUrl\";s:111:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/maintenanceMode.1641895561.maintenance-mode-thumbnail.png\";s:14:\"metaPreviewUrl\";s:109:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/maintenanceMode.1641895561.maintenance-mode-preview.png\";s:15:\"metaDescription\";s:180:\"Enable maintenance mode and select the page that will be displayed to the website visitors. Users with access to the admin panel will still be able to preview and edit the website.\";s:17:\"metaAddonImageUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/maintenanceMode.1641895561.maintenance-mode.png\";s:4:\"type\";s:5:\"addon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;}i:6;a:10:{s:6:\"bundle\";s:26:\"addon/premiumIconLibraries\";s:3:\"tag\";s:20:\"premiumIconLibraries\";s:4:\"name\";s:22:\"Premium Icon Libraries\";s:16:\"metaThumbnailUrl\";s:126:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/premiumIconLibraries.1658920415.icon-library-premium-addon-thumbnail.png\";s:14:\"metaPreviewUrl\";s:124:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/premiumIconLibraries.1658920415.icon-library-premium-addon-preview.png\";s:15:\"metaDescription\";s:66:\"Extend Visual Composer icon picker with additional icon libraries.\";s:17:\"metaAddonImageUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/premiumIconLibraries.1658920415.icon-libraries.png\";s:4:\"type\";s:5:\"addon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;}i:7;a:10:{s:6:\"bundle\";s:22:\"addon/extendedEditForm\";s:3:\"tag\";s:16:\"extendedEditForm\";s:4:\"name\";s:22:\"Premium Design Options\";s:16:\"metaThumbnailUrl\";s:114:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/extendedEditForm.1653458734.vcwb-default-addon-thumbnail.png\";s:14:\"metaPreviewUrl\";s:112:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/extendedEditForm.1653458734.vcwb-default-addon-preview.png\";s:15:\"metaDescription\";s:96:\"Premium features that extend edit form capabilities for the Visual Composer Premium subscribers.\";s:17:\"metaAddonImageUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/extendedEditForm.1653458734.premium-design-options.png\";s:4:\"type\";s:5:\"addon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;}i:8;a:10:{s:6:\"bundle\";s:18:\"addon/themeBuilder\";s:3:\"tag\";s:12:\"themeBuilder\";s:4:\"name\";s:13:\"Theme Builder\";s:16:\"metaThumbnailUrl\";s:110:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/themeBuilder.1747296716.vcwb-default-addon-thumbnail.png\";s:14:\"metaPreviewUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/themeBuilder.1747296716.vcwb-default-addon-preview.png\";s:15:\"metaDescription\";s:108:\"Extend website builder with additional functionality to create and manage layouts for pages like \"404 page\".\";s:17:\"metaAddonImageUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/themeBuilder.1747296716.theme-builder.png\";s:4:\"type\";s:5:\"addon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;}i:9;a:10:{s:6:\"bundle\";s:20:\"addon/elementPresets\";s:3:\"tag\";s:14:\"elementPresets\";s:4:\"name\";s:15:\"Element Presets\";s:16:\"metaThumbnailUrl\";s:112:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/elementPresets.1683793735.vcwb-default-addon-thumbnail.png\";s:14:\"metaPreviewUrl\";s:110:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/elementPresets.1683793735.vcwb-default-addon-preview.png\";s:15:\"metaDescription\";s:107:\"Save elements as your custom element presets with your settings. Save rows and sections as block templates.\";s:17:\"metaAddonImageUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/elementPresets.1683793735.element-presets.png\";s:4:\"type\";s:5:\"addon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;}i:10;a:10:{s:6:\"bundle\";s:18:\"addon/popupBuilder\";s:3:\"tag\";s:12:\"popupBuilder\";s:4:\"name\";s:13:\"Popup Builder\";s:16:\"metaThumbnailUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/popupBuilder.1725879708.thumbnail-popup-builder.png\";s:14:\"metaPreviewUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/popupBuilder.1725879708.preview-popup-builder.png\";s:15:\"metaDescription\";s:94:\"Create popup templates and manage triggers (ex. on click, exit intent, page depth, page load).\";s:17:\"metaAddonImageUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/popupBuilder.1725879708.popup-builder.png\";s:4:\"type\";s:5:\"addon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;}i:11;a:10:{s:6:\"bundle\";s:17:\"addon/roleManager\";s:3:\"tag\";s:11:\"roleManager\";s:4:\"name\";s:12:\"Role Manager\";s:16:\"metaThumbnailUrl\";s:109:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/roleManager.1685605332.vcwb-default-addon-thumbnail.png\";s:14:\"metaPreviewUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/roleManager.1685605332.vcwb-default-addon-preview.png\";s:15:\"metaDescription\";s:90:\"Control access to your content and the editor functionality for your WordPress user roles.\";s:17:\"metaAddonImageUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/roleManager.1685605332.role-manager.png\";s:4:\"type\";s:5:\"addon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;}i:12;a:10:{s:6:\"bundle\";s:17:\"addon/fontManager\";s:3:\"tag\";s:11:\"fontManager\";s:4:\"name\";s:12:\"Font Manager\";s:16:\"metaThumbnailUrl\";s:109:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/fontManager.1752059220.vcwb-default-addon-thumbnail.png\";s:14:\"metaPreviewUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/fontManager.1752059220.vcwb-default-addon-preview.png\";s:15:\"metaDescription\";s:98:\"Control the typography and other font styling of your site, including links, paragraphs, headings.\";s:17:\"metaAddonImageUrl\";s:114:\"https://cdn.hub.visualcomposer.com/vcwb-teasers-addon/fontManager.1752059220.vcwb-font-manager-addon-thumbnail.png\";s:4:\"type\";s:5:\"addon\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;}}','auto'),
(237368,'vcv-hubTeaserTemplates','a:371:{i:0;a:13:{s:6:\"bundle\";s:23:\"template/fashionLeaflet\";s:4:\"name\";s:15:\"Fashion Leaflet\";s:16:\"metaThumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513171754.fashionLeaflet-thumbnail.png\";s:14:\"metaPreviewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513171754.fashionLeaflet-preview.png\";s:15:\"metaDescription\";s:105:\"Magazine leaflet layout for clean articles with hero images (ex. fashion, beauty, wellness, online store)\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5a2fc57fedf72\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:1;a:13:{s:6:\"bundle\";s:30:\"template/architectureCaseStudy\";s:4:\"name\";s:23:\"Architecture Case Study\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513172082.architectureCaseStudy-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513172082.architectureCaseStudy-preview.png\";s:15:\"metaDescription\";s:118:\"A case study for architecture, real estate agency, interior designers, property owners or any other creative industry.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5a2fed0f174cc\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:2;a:13:{s:6:\"bundle\";s:27:\"template/productLandingPage\";s:4:\"name\";s:20:\"Product Landing Page\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513172134.productLandingPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513172134.productLandingPage-preview.png\";s:15:\"metaDescription\";s:57:\"A page for advertising products. Includes a feature list.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5a300c418007a\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:3;a:13:{s:6:\"bundle\";s:19:\"template/barberShop\";s:4:\"name\";s:11:\"Barber Shop\";s:16:\"metaThumbnailUrl\";s:85:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513172182.barberShop-thumbnail.png\";s:14:\"metaPreviewUrl\";s:83:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513172182.barberShop-preview.png\";s:15:\"metaDescription\";s:133:\"A perfect dark-toned layout for a bar, barber shop, coffee shop or cafe. Includes staff info, contact information, schedule and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5a3125d6e41c8\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:4;a:13:{s:6:\"bundle\";s:25:\"template/lightBrandLayout\";s:4:\"name\";s:18:\"Light Brand Layout\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513184257.lightBrandLayout-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513184257.lightBrandLayout-preview.png\";s:15:\"metaDescription\";s:101:\"A layout that showcases services and brand values with light colors, shape dividers and image slider.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5a315a7c1065e\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:5;a:13:{s:6:\"bundle\";s:22:\"template/gameAppLayout\";s:4:\"name\";s:15:\"Game App Layout\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513261995.gameAppLayout-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513261995.gameAppLayout-preview.png\";s:15:\"metaDescription\";s:103:\"A medieval style layout for an awesome application or game with App Store and Google Play placeholders.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5a328930b1ca7\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:6;a:13:{s:6:\"bundle\";s:32:\"template/corporateHomepageLayout\";s:4:\"name\";s:25:\"Corporate Homepage Layout\";s:16:\"metaThumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513283509.corporateHomepageLayout-thumbnail.png\";s:14:\"metaPreviewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513283509.corporateHomepageLayout-preview.png\";s:15:\"metaDescription\";s:98:\"A simple, yet powerful corporate homepage for any business (ex. insurance, finance, banking, etc.)\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5a32df4c4e471\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1655885553.corporateHomepageLayout-intro-page-image.png\";s:11:\"isPageIntro\";b:1;}i:7;a:13:{s:6:\"bundle\";s:23:\"template/travelPackages\";s:4:\"name\";s:15:\"Travel Packages\";s:16:\"metaThumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513345810.travelPackages-thumbnail.png\";s:14:\"metaPreviewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513345810.travelPackages-preview.png\";s:15:\"metaDescription\";s:153:\"A sunny and positive layout for travel agencies and booking companies to represent tour or property packages. Includes pricing tables and shape dividers.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5a33d2296b47e\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:8;a:13:{s:6:\"bundle\";s:32:\"template/digitalBusinessHomepage\";s:4:\"name\";s:25:\"Digital Business Homepage\";s:16:\"metaThumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513434710.digitalBusinessHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513434710.digitalBusinessHomepage-preview.png\";s:15:\"metaDescription\";s:151:\"A template for a hi-tech startup or web development company to offer services, sell product plans, and describe processes. Includes an archive section.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5a352d520b22f\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:9;a:13:{s:6:\"bundle\";s:32:\"template/fancyProductLandingPage\";s:4:\"name\";s:26:\"Fancy Product Landing Page\";s:16:\"metaThumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513462443.fancyProductLandingPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513462443.fancyProductLandingPage-preview.png\";s:15:\"metaDescription\";s:80:\"Advertise products with a campaign-ready landing page for products or services. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5a3599c918ef9\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:10;a:13:{s:6:\"bundle\";s:30:\"template/onlineFinanceServices\";s:4:\"name\";s:23:\"Online Finance Services\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513539761.onlineFinanceServices-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513539761.onlineFinanceServices-preview.png\";s:15:\"metaDescription\";s:98:\"A layout for finance, accounting or investment business with feature list and a brief description.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5a36c7b54e860\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:11;a:13:{s:6:\"bundle\";s:24:\"template/digitalServices\";s:4:\"name\";s:16:\"Digital Services\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513633510.digitalServices-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1513633510.digitalServices-preview.png\";s:15:\"metaDescription\";s:111:\"A template for digital and design services with the strong focus on case studies and articles (ex. UX, design).\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5a54d19a2455b\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:12;a:13:{s:6:\"bundle\";s:32:\"template/simpleDesignerPortfolio\";s:4:\"name\";s:25:\"Simple Designer Portfolio\";s:16:\"metaThumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1514041342.simpleDesignerPortfolio-thumbnail.png\";s:14:\"metaPreviewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1514294032.simpleDesignerPortfolio-preview.png\";s:15:\"metaDescription\";s:140:\"A simple boxed designer portfolio to showcase graphics or design, photography or any other creative work. Includes a gallery with hover box.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5aa038b009d03\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:13;a:13:{s:6:\"bundle\";s:23:\"template/simpleFoodBlog\";s:4:\"name\";s:16:\"Simple Food Blog\";s:16:\"metaThumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1514284654.simpleFoodBlog-thumbnail.png\";s:14:\"metaPreviewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1514294021.simpleFoodBlog-preview.png\";s:15:\"metaDescription\";s:119:\"Beautiful list of articles for food and travel bloggers with rich feature image and colorful background in a grid view.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5a422509abaa3\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:14;a:13:{s:6:\"bundle\";s:29:\"template/webDeveloperHomepage\";s:4:\"name\";s:22:\"Web Developer Homepage\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1514560926.webDeveloperHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1514560926.webDeveloperHomepage-preview.png\";s:15:\"metaDescription\";s:135:\"Clean homepage layout with custom-made 3d illustrations for web development company or freelancer to showcase projects and/or services.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5a465cd6956b0\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1655885472.webDeveloperHomepage-intro-page-image.png\";s:11:\"isPageIntro\";b:1;}i:15;a:13:{s:6:\"bundle\";s:28:\"template/photoShowcaseLayout\";s:4:\"name\";s:21:\"Photo Showcase Layout\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1514724964.photoShowcaseLayout-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1514724964.photoShowcaseLayout-preview.png\";s:15:\"metaDescription\";s:145:\"A layout that showcases creative work (ex. photography, video or digital artwork) in a grid view layout with icon hover effect and blog articles.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5a48ddc9106c1\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:16;a:13:{s:6:\"bundle\";s:28:\"template/businessProductPage\";s:4:\"name\";s:21:\"Business Product Page\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1515679580.businessProductPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1515679580.businessProductPage-preview.png\";s:15:\"metaDescription\";s:135:\"A business page to promote products or services, powered by hero sections and parallax background effects to catch customer attention. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5a576e10c3dc7\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:17;a:13:{s:6:\"bundle\";s:27:\"template/financeLandingPage\";s:4:\"name\";s:20:\"Finance Landing Page\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1518107270.financeLandingPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1518107270.financeLandingPage-preview.png\";s:15:\"metaDescription\";s:131:\"A landing page with a dynamic title and colored service blocks for finance, real estate, accounting or any other advisory services.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5a7c794a66909\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:18;a:13:{s:6:\"bundle\";s:27:\"template/gridStylePortfolio\";s:4:\"name\";s:20:\"Grid Style Portfolio\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1519289353.gridStylePortfolio-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1519289353.gridStylePortfolio-preview.png\";s:15:\"metaDescription\";s:131:\"A minimalistic grid portfolio layout to represent art or digital content. Perfect for photographers, designers, videographers, etc.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5a8d9b31cc9c3\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:19;a:13:{s:6:\"bundle\";s:20:\"template/basicHeader\";s:4:\"name\";s:12:\"Basic Header\";s:16:\"metaThumbnailUrl\";s:84:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520061652.basicMenu-thumbnail.png\";s:14:\"metaPreviewUrl\";s:82:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520061652.basicMenu-preview.png\";s:15:\"metaDescription\";s:62:\"A simple boxed header with logo placeholder and sandwich menu.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5a9a4add294fb\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:20;a:13:{s:6:\"bundle\";s:29:\"template/basicFullWidthHeader\";s:4:\"name\";s:23:\"Basic Full Width Header\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520062158.basicFullWidthHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520062158.basicFullWidthHeader-preview.png\";s:15:\"metaDescription\";s:70:\"A simple header in full width with logo placeholder and sandwich menu.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5a9a4e071f9ff\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:21;a:13:{s:6:\"bundle\";s:27:\"template/centeredLogoHeader\";s:4:\"name\";s:20:\"Centered Logo Header\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520065214.centeredLogoHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520065214.centeredLogoHeader-preview.png\";s:15:\"metaDescription\";s:101:\"A stylish header with logo placed in the middle and two menus on the left and right side of the logo.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5a9a597498aaf\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:22;a:13:{s:6:\"bundle\";s:25:\"template/simpleDarkHeader\";s:4:\"name\";s:18:\"Simple Dark Header\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520066427.simpleDarkHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520066427.simpleDarkHeader-preview.png\";s:15:\"metaDescription\";s:88:\"Thin header with dark background and full width placement of logo and menu on each side.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5a9a5e775332c\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:23;a:13:{s:6:\"bundle\";s:22:\"template/twoMenuHeader\";s:4:\"name\";s:15:\"Two Menu Header\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520067403.twoMenuHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520067403.twoMenuHeader-preview.png\";s:15:\"metaDescription\";s:90:\"A white header with sandwich menu and secondary text menu for quick functions and options.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5a9a62278bcb6\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:24;a:13:{s:6:\"bundle\";s:33:\"template/headerWithPurchaseButton\";s:4:\"name\";s:27:\"Header With Purchase Button\";s:16:\"metaThumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520068048.headerWithPurchaseButton-thumbnail.png\";s:14:\"metaPreviewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520068048.headerWithPurchaseButton-preview.png\";s:15:\"metaDescription\";s:102:\"A header with logo, menu, and eye-catching call to action button (ex. purchase, subscribe, call, etc.)\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5a9a64bce808e\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:25;a:13:{s:6:\"bundle\";s:26:\"template/onlineStoreHeader\";s:4:\"name\";s:19:\"Online Store Header\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520106617.onlineStoreHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520106617.onlineStoreHeader-preview.png\";s:15:\"metaDescription\";s:122:\"A two part header for online stores with menu in the middle, shopping cart icon, and upper section for additional options.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5a9afa389350d\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:26;a:13:{s:6:\"bundle\";s:20:\"template/basicFooter\";s:4:\"name\";s:12:\"Basic Footer\";s:16:\"metaThumbnailUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520282204.basicFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:84:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520282204.basicFooter-preview.png\";s:15:\"metaDescription\";s:110:\"A simple boxed site footer with copyright information and thin upper line to separate footer from the content.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:13:\"5a9da7622c402\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:27;a:13:{s:6:\"bundle\";s:24:\"template/fullWidthFooter\";s:4:\"name\";s:17:\"Full Width Footer\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520282269.fullWidthFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520282269.fullWidthFooter-preview.png\";s:15:\"metaDescription\";s:110:\"A simple full width footer with copyright information and thin upper line to separate footer from the content.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:13:\"5a9da7af60e4f\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:28;a:13:{s:6:\"bundle\";s:24:\"template/basicDarkFooter\";s:4:\"name\";s:17:\"Basic Dark Footer\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520282333.basicDarkFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520282333.basicDarkFooter-preview.png\";s:15:\"metaDescription\";s:110:\"A simple full width footer with copyright information and dark background to separate footer from the content.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:13:\"5a9da834c03c7\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:29;a:13:{s:6:\"bundle\";s:25:\"template/twoSectionFooter\";s:4:\"name\";s:18:\"Two Section Footer\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520283057.twoSectionFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1520283057.twoSectionFooter-preview.png\";s:15:\"metaDescription\";s:135:\"A footer with two section - upper section for site menu and company description, lower menu for copyright information and company logo.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:13:\"5a9dac93b0258\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:30;a:13:{s:6:\"bundle\";s:29:\"template/travelAppLandingPage\";s:4:\"name\";s:23:\"Travel App Landing Page\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1521814489.travelAppLandingPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1521814489.travelAppLandingPage-preview.png\";s:15:\"metaDescription\";s:109:\"A landing page for an app, service or product with a hero image and menu at the bottom of the initial screen.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5ab50b0e906be\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:31;a:13:{s:6:\"bundle\";s:26:\"template/simpleLandingPage\";s:4:\"name\";s:19:\"Simple Landing Page\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1556529307.simpleLandingPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1556529307.simpleLandingPage-preview.png\";s:15:\"metaDescription\";s:144:\"A simple landing page to be used for the main website or marketing campaigns. Perfect for digital products, events, collecting leads, and more. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:10:\"TP11000001\";s:6:\"update\";b:0;s:13:\"allowDownload\";b:1;s:10:\"bundleType\";a:2:{i:0;s:4:\"free\";i:1;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1655885286.simpleLandingPage-intro-page-image.png\";s:11:\"isPageIntro\";b:1;}i:32;a:13:{s:6:\"bundle\";s:36:\"predefinedTemplate/simpleBlogArticle\";s:4:\"name\";s:19:\"Simple Blog Article\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1557314848.simpleBlogArticle-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1557314848.simpleBlogArticle-preview.png\";s:15:\"metaDescription\";s:106:\"Easy to read a two-column article with full height featured image to instantly grab visitor’s attention.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:10:\"predefined\";s:2:\"id\";s:10:\"TP11000002\";s:6:\"update\";b:0;s:13:\"allowDownload\";b:1;s:10:\"bundleType\";a:2:{i:0;s:4:\"free\";i:1;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:33;a:13:{s:6:\"bundle\";s:39:\"predefinedTemplate/photographyPortfolio\";s:4:\"name\";s:21:\"Photography Portfolio\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1563276800.photographyPortfolio-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1563276892.photographyPortfolio-preview.png\";s:15:\"metaDescription\";s:129:\"Minimalistic personal portfolio layout with masonry style gallery grid for photographs, digital artists, web designers, and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:10:\"predefined\";s:2:\"id\";s:10:\"TP11000003\";s:6:\"update\";b:0;s:13:\"allowDownload\";b:1;s:10:\"bundleType\";a:2:{i:0;s:4:\"free\";i:1;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:34;a:13:{s:6:\"bundle\";s:20:\"template/startupPage\";s:4:\"name\";s:18:\"Pagoo Startup Page\";s:16:\"metaThumbnailUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1607451426.startupPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:84:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1607451426.startupPage-preview.png\";s:15:\"metaDescription\";s:128:\"A full startup page with hero images and feature list to showcase products and services of mobile apps, software companies etc. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:10:\"TP11000004\";s:6:\"update\";b:0;s:13:\"allowDownload\";b:1;s:10:\"bundleType\";a:2:{i:0;s:4:\"free\";i:1;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1655885357.startupPage-intro-page-image.png\";s:11:\"isPageIntro\";b:1;}i:35;a:13:{s:6:\"bundle\";s:26:\"template/singleProductPage\";s:4:\"name\";s:19:\"Single Product Page\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1608379581.singleProductPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1608379581.singleProductPage-preview.png\";s:15:\"metaDescription\";s:137:\"A landing page for a specific product with a hero section, description, review, and features. Great for online sales and product reviews.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:10:\"TP11000005\";s:6:\"update\";b:0;s:13:\"allowDownload\";b:1;s:10:\"bundleType\";a:2:{i:0;s:4:\"free\";i:1;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1655885403.singleProductPage-intro-page-image.png\";s:11:\"isPageIntro\";b:1;}i:36;a:13:{s:6:\"bundle\";s:37:\"predefinedTemplate/mediumStyleArticle\";s:4:\"name\";s:20:\"Medium Style Article\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562831625.mediumStyleArticle-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562831625.mediumStyleArticle-preview.png\";s:15:\"metaDescription\";s:98:\"Blog article page with author information, a featured image, and a boxed content area for content.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:10:\"predefined\";s:2:\"id\";s:10:\"TP11000006\";s:6:\"update\";b:0;s:13:\"allowDownload\";b:1;s:10:\"bundleType\";a:2:{i:0;s:4:\"free\";i:1;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:37;a:13:{s:6:\"bundle\";s:21:\"template/personalPage\";s:4:\"name\";s:13:\"Personal Page\";s:16:\"metaThumbnailUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1526912985.personalPage-thumbnail.jpg\";s:14:\"metaPreviewUrl\";s:85:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1526912985.personalPage-preview.png\";s:15:\"metaDescription\";s:133:\"Personal portfolio page for creatives like artists, and designers to share their biography and recent works in the form of a gallery.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:10:\"TP11000007\";s:6:\"update\";b:0;s:13:\"allowDownload\";b:1;s:10:\"bundleType\";a:2:{i:0;s:4:\"free\";i:1;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1655885419.personalPage-intro-page-image.png\";s:11:\"isPageIntro\";b:1;}i:38;a:13:{s:6:\"bundle\";s:30:\"predefinedTemplate/weddingPage\";s:4:\"name\";s:12:\"Wedding Page\";s:16:\"metaThumbnailUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1556191390.weddingPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:84:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1556191390.weddingPage-preview.png\";s:15:\"metaDescription\";s:85:\"An ideal one-page layout for a wedding, engagements, meetups, and networking parties.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:10:\"predefined\";s:2:\"id\";s:10:\"TP11000008\";s:6:\"update\";b:0;s:13:\"allowDownload\";b:1;s:10:\"bundleType\";a:2:{i:0;s:4:\"free\";i:1;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:39;a:13:{s:6:\"bundle\";s:24:\"template/productShowcase\";s:4:\"name\";s:16:\"Product Showcase\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1532086776.productShowcase-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1532086776.productShowcase-preview.png\";s:15:\"metaDescription\";s:87:\"A product showcase page with a sticky product preview image in the center and features.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5b51c9587cc4e\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1655885494.productShowcase-intro-page-image.png\";s:11:\"isPageIntro\";b:1;}i:40;a:13:{s:6:\"bundle\";s:37:\"template/realEstateProjectLandingPage\";s:4:\"name\";s:32:\"Real Estate Project Landing Page\";s:16:\"metaThumbnailUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1532096321.realEstateProjectLandingPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1532096321.realEstateProjectLandingPage-preview.png\";s:15:\"metaDescription\";s:133:\"A landing page for the real estate, accounting, construction or similar project with the background hero image and one-sided content.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5b51eda38c11a\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:41;a:13:{s:6:\"bundle\";s:30:\"template/minimalisticPortfolio\";s:4:\"name\";s:22:\"Minimalistic Portfolio\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1533035906.minimalisticPortfolio-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1533035906.minimalisticPortfolio-preview.png\";s:15:\"metaDescription\";s:72:\"A minimalistic portfolio with featured works, hero images, and services.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5b604411994ea\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:42;a:13:{s:6:\"bundle\";s:24:\"template/serviceHomepage\";s:4:\"name\";s:16:\"Service Homepage\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1536667327.serviceHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1536667327.serviceHomepage-preview.png\";s:15:\"metaDescription\";s:80:\"A service, application or single product homepage with screenshots and features.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5b97ad185bca4\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:43;a:13:{s:6:\"bundle\";s:28:\"template/businessProcessPage\";s:4:\"name\";s:21:\"Business Process Page\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1536740930.businessProcessPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1536740930.businessProcessPage-preview.png\";s:15:\"metaDescription\";s:79:\"A layout for business processes, workflow, and services in an easy to read way.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5b98ccbdce9a9\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:44;a:13:{s:6:\"bundle\";s:26:\"template/productShopLayout\";s:4:\"name\";s:19:\"Product Shop Layout\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1537192496.productShopLayout-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1537192496.productShopLayout-preview.png\";s:15:\"metaDescription\";s:88:\"A layout for a product page with hero product section at the top and product list below.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5b9fb0ce991cd\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:45;a:13:{s:6:\"bundle\";s:24:\"template/shopLandingPage\";s:4:\"name\";s:17:\"Shop Landing Page\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1537277052.shopLandingPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1537277052.shopLandingPage-preview.png\";s:15:\"metaDescription\";s:171:\"A clean and light landing page for a shop or service website with hero images, call-to-action blocks, and products or services. Perfect for flower shops, beauty, boutique.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5ba0faf261e87\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:46;a:13:{s:6:\"bundle\";s:27:\"template/caseStudySlideshow\";s:4:\"name\";s:20:\"Case Study Slideshow\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1538130473.caseStudySlideshow-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1538130473.caseStudySlideshow-preview.png\";s:15:\"metaDescription\";s:163:\"A slideshow type layout with sticky sections containing hero background images and description. A perfect layout for photography, videography, design or portfolio.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5bae01984ed38\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:47;a:13:{s:6:\"bundle\";s:25:\"template/stickyMenuHeader\";s:4:\"name\";s:18:\"Sticky Menu Header\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1538662447.stickyMenuHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1538662447.stickyMenuHeader-preview.png\";s:15:\"metaDescription\";s:92:\"A sticky header with logo and menu to always display the navigation of the site to visitors.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5bb61e23bb626\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:48;a:13:{s:6:\"bundle\";s:26:\"template/seafoodRestaurant\";s:4:\"name\";s:18:\"Seafood Restaurant\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1538741758.seafoodRestaurant-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1538741976.seafoodRestaurant-preview.png\";s:15:\"metaDescription\";s:101:\"A layout for the food industry (ex. restaurant or cafe) with slideshow, menu, articles, and contacts.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5bd3098d3a88e\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:49;a:13:{s:6:\"bundle\";s:28:\"template/sidebarForECommerce\";s:4:\"name\";s:21:\"Sidebar for sCommerce\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1539093562.sidebarForECommerce-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1539093562.sidebarForECommerce-preview.png\";s:15:\"metaDescription\";s:79:\"A sidebar for an online store with search, menu, banner and information blocks.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:10:\"hubSidebar\";s:2:\"id\";s:13:\"5bbcb3c02d591\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:50;a:13:{s:6:\"bundle\";s:30:\"template/onlineStoreMenuHeader\";s:4:\"name\";s:24:\"Online Store Menu Header\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1539266742.onlineStoreMenuHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1539266742.onlineStoreMenuHeader-preview.png\";s:15:\"metaDescription\";s:114:\"A two part header for an online store with icons and sandwich menu on top and a product category menu underneath. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5bbf570ef0cdf\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:51;a:13:{s:6:\"bundle\";s:22:\"template/bannerSidebar\";s:4:\"name\";s:14:\"Banner Sidebar\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1539342563.bannerSidebar-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1539342563.bannerSidebar-preview.png\";s:15:\"metaDescription\";s:95:\"A sidebar with two editable banners and additional text description for online stores or blogs.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:10:\"hubSidebar\";s:2:\"id\";s:13:\"5bc080752788d\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:52;a:13:{s:6:\"bundle\";s:24:\"template/heroImageHeader\";s:4:\"name\";s:17:\"Hero Image Header\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1539355452.heroImageHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1539355452.heroImageHeader-preview.png\";s:15:\"metaDescription\";s:94:\"A hero image header with slideshow effect and logo with a menu placed on the solid background.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5bc0b2c615888\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:53;a:13:{s:6:\"bundle\";s:23:\"template/comingSoonPage\";s:4:\"name\";s:16:\"Coming Soon Page\";s:16:\"metaThumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1540496926.comingSoonPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1540496926.comingSoonPage-preview.png\";s:15:\"metaDescription\";s:150:\"A page template for an under-construction website. Inform page visitors about an event, use a call to action button for sign-ups or pre-order tickets.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5bd21d753ed06\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:54;a:13:{s:6:\"bundle\";s:26:\"template/callToActionRight\";s:4:\"name\";s:20:\"Call to Action Right\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546946068.callToActionRight-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546946068.callToActionRight-preview.png\";s:15:\"metaDescription\";s:108:\"A call to action block with text and button positioned on the right side and eye-catching image on the left.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c347dc9198d4\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:55;a:13:{s:6:\"bundle\";s:25:\"template/callToActionLeft\";s:4:\"name\";s:19:\"Call to Action Left\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546946211.callToActionLeft-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546946211.callToActionLeft-preview.png\";s:15:\"metaDescription\";s:108:\"A call to action block with text and button positioned on the left side and eye-catching image on the right.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c347dd51f929\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:56;a:13:{s:6:\"bundle\";s:27:\"template/2FeaturesWithIcons\";s:4:\"name\";s:21:\"2 Features With Icons\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546948468.2FeaturesWithIcons-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546948468.2FeaturesWithIcons-preview.png\";s:15:\"metaDescription\";s:56:\"Features with icon, title, and description in 2 columns.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c34889eeff96\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:57;a:13:{s:6:\"bundle\";s:27:\"template/3FeaturesWithIcons\";s:4:\"name\";s:21:\"3 Features With Icons\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546948526.3FeaturesWithIcons-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546948526.3FeaturesWithIcons-preview.png\";s:15:\"metaDescription\";s:56:\"Features with icon, title, and description in 3 columns.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c348758855ad\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:58;a:13:{s:6:\"bundle\";s:27:\"template/4FeaturesWithIcons\";s:4:\"name\";s:21:\"4 Features With Icons\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546948579.4FeaturesWithIcons-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546948579.4FeaturesWithIcons-preview.png\";s:15:\"metaDescription\";s:56:\"Features with icon, title, and description in 4 columns.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c34879fc802c\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:59;a:13:{s:6:\"bundle\";s:27:\"template/5FeaturesWithIcons\";s:4:\"name\";s:21:\"5 Features With Icons\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546948649.5FeaturesWithIcons-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546948649.5FeaturesWithIcons-preview.png\";s:15:\"metaDescription\";s:56:\"Features with icon, title, and description in 5 columns.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c34888d4bfe3\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:60;a:13:{s:6:\"bundle\";s:27:\"template/2ColumnTextSection\";s:4:\"name\";s:21:\"2 Column Text Section\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546950283.2ColumnTextSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546950283.2ColumnTextSection-preview.png\";s:15:\"metaDescription\";s:39:\"A section with text block in 2 columns.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c34919e52425\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:61;a:13:{s:6:\"bundle\";s:27:\"template/3ColumnTextSection\";s:4:\"name\";s:21:\"3 Column Text Section\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546950329.3ColumnTextSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546950329.3ColumnTextSection-preview.png\";s:15:\"metaDescription\";s:39:\"A section with text block in 3 columns.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c3491f019723\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:62;a:13:{s:6:\"bundle\";s:27:\"template/4ColumnTextSection\";s:4:\"name\";s:21:\"4 Column Text Section\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546950385.4ColumnTextSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546950385.4ColumnTextSection-preview.png\";s:15:\"metaDescription\";s:39:\"A section with text block in 4 columns.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c34921387844\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:63;a:13:{s:6:\"bundle\";s:27:\"template/4ColumnNewsSection\";s:4:\"name\";s:21:\"4 Column News Section\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546952003.4ColumnNewsSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546952003.4ColumnNewsSection-preview.png\";s:15:\"metaDescription\";s:86:\"An archive type section with news (read more information for an article) in 4 columns.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c349a808e7b2\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:64;a:13:{s:6:\"bundle\";s:27:\"template/3ColumnNewsSection\";s:4:\"name\";s:21:\"3 Column News Section\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546952072.3ColumnNewsSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546952072.3ColumnNewsSection-preview.png\";s:15:\"metaDescription\";s:86:\"An archive type section with news (read more information for an article) in 3 columns.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c349a8c72b83\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:65;a:13:{s:6:\"bundle\";s:27:\"template/2ColumnNewsSection\";s:4:\"name\";s:21:\"2 Column News Section\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546952119.2ColumnNewsSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546952119.2ColumnNewsSection-preview.png\";s:15:\"metaDescription\";s:86:\"An archive type section with news (read more information for an article) in 2 columns.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c349abed7414\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:66;a:13:{s:6:\"bundle\";s:26:\"template/heroSectionCenter\";s:4:\"name\";s:19:\"Hero Section Center\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546954709.heroSectionCenter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546954709.heroSectionCenter-preview.png\";s:15:\"metaDescription\";s:60:\"A hero section with title, description, and button centered.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c34a5e789815\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:67;a:13:{s:6:\"bundle\";s:24:\"template/heroSectionLeft\";s:4:\"name\";s:17:\"Hero Section Left\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546954766.heroSectionLeft-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1547733172.heroSectionLeft-preview.png\";s:15:\"metaDescription\";s:63:\"A hero section with title, description, and button on the left.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c34a6598646d\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:68;a:13:{s:6:\"bundle\";s:25:\"template/heroSectionRight\";s:4:\"name\";s:18:\"Hero Section Right\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1546954818.heroSectionRight-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1547733187.heroSectionRight-preview.png\";s:15:\"metaDescription\";s:64:\"A hero section with title, description, and button on the right.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c34a68e8b8e0\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:69;a:13:{s:6:\"bundle\";s:26:\"template/fashionStorefront\";s:4:\"name\";s:18:\"Fashion Storefront\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1547129132.fashionStorefront-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1547129132.fashionStorefront-preview.png\";s:15:\"metaDescription\";s:112:\"A fully customizable eCommerce storefront template for clothing, shoe store, or any kind of fashion online shop.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5c374fd02d5a7\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:70;a:13:{s:6:\"bundle\";s:27:\"template/2ColumnBannerBlock\";s:4:\"name\";s:21:\"2 Column Banner Block\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1547731461.2ColumnBannerBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1547731461.2ColumnBannerBlock-preview.png\";s:15:\"metaDescription\";s:69:\"A banner block with background image, title, and button in 2 columns.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c40812a03b1d\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:71;a:13:{s:6:\"bundle\";s:27:\"template/3ColumnBannerBlock\";s:4:\"name\";s:21:\"3 Column Banner Block\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1547731519.3ColumnBannerBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1547731519.3ColumnBannerBlock-preview.png\";s:15:\"metaDescription\";s:69:\"A banner block with background image, title, and button in 3 columns.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c408114a64f5\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:72;a:13:{s:6:\"bundle\";s:27:\"template/4ColumnBannerBlock\";s:4:\"name\";s:21:\"4 Column Banner Block\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1547731582.4ColumnBannerBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1547731582.4ColumnBannerBlock-preview.png\";s:15:\"metaDescription\";s:69:\"A banner block with background image, title, and button in 4 columns.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c4081062eb76\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:73;a:13:{s:6:\"bundle\";s:26:\"template/threeColumnFooter\";s:4:\"name\";s:19:\"Three Column Footer\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548165050.threeColumnFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548165050.threeColumnFooter-preview.png\";s:15:\"metaDescription\";s:178:\"A footer to be used for main website or marketing campaigns. Perfect for digital products, events, collecting leads and more. Includes a background image, menus and social icons.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:13:\"5c471e86a02e6\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:74;a:13:{s:6:\"bundle\";s:34:\"template/serviceIntroductionLayout\";s:4:\"name\";s:27:\"Service Introduction Layout\";s:16:\"metaThumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548165326.serviceIntroductionLayout-thumbnail.png\";s:14:\"metaPreviewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548165326.serviceIntroductionLayout-preview.png\";s:15:\"metaDescription\";s:81:\"A landing page to introduce a service or product with illustrations and features.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5c471d3b26bec\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:75;a:13:{s:6:\"bundle\";s:26:\"template/introSectionBlock\";s:4:\"name\";s:19:\"Intro Section Block\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548165573.introSectionBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548165573.introSectionBlock-preview.png\";s:15:\"metaDescription\";s:83:\"Intro (hero) section with logo, call to action, and illustration on the right side.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c471d9e41757\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:76;a:13:{s:6:\"bundle\";s:25:\"template/sideFeatureBlock\";s:4:\"name\";s:18:\"Side Feature Block\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548165762.sideFeatureBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548165762.sideFeatureBlock-preview.png\";s:15:\"metaDescription\";s:72:\"A side feature block with description and illustration on the left side.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c471dc242082\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:77;a:13:{s:6:\"bundle\";s:22:\"template/sideInfoBlock\";s:4:\"name\";s:15:\"Side Info Block\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548166009.sideInfoBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548166009.sideInfoBlock-preview.png\";s:15:\"metaDescription\";s:108:\"An informational block with an image on the right and content on the left (for features and call to action).\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c471df552c24\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:78;a:13:{s:6:\"bundle\";s:28:\"template/countUpSectionBlock\";s:4:\"name\";s:21:\"CountUp Section Block\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548166229.countUpSectionBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548166229.countUpSectionBlock-preview.png\";s:15:\"metaDescription\";s:115:\"A section with an introduction text, counter elements, and featured bottom image (can be placed before the footer).\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c471e2b0f75b\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:79;a:13:{s:6:\"bundle\";s:27:\"template/weddingHeroSection\";s:4:\"name\";s:20:\"Wedding Hero Section\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548240878.weddingHeroSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548240878.weddingHeroSection-preview.png\";s:15:\"metaDescription\";s:127:\"A beautiful hero section for the wedding landing page with a parallax background. Perfect for invitation, RSVP, and any event. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c4846c3be458\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:80;a:13:{s:6:\"bundle\";s:27:\"template/weddingLandingPage\";s:4:\"name\";s:20:\"Wedding Landing Page\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548250176.weddingLandingPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548250176.weddingLandingPage-preview.png\";s:15:\"metaDescription\";s:119:\"A landing page for wedding invitation, engagement announcement or any other events such as meetups, networking parties.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5c486bbfb2458\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:81;a:13:{s:6:\"bundle\";s:26:\"template/fullHeightSection\";s:4:\"name\";s:19:\"Full Height Section\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548250450.fullHeightSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548250450.fullHeightSection-preview.png\";s:15:\"metaDescription\";s:60:\"A full-height section with an eye-catching title and button.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c486ce16942d\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:82;a:13:{s:6:\"bundle\";s:29:\"template/coupleProfileSection\";s:4:\"name\";s:22:\"Couple Profile Section\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548250695.coupleProfileSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1548250695.coupleProfileSection-preview.png\";s:15:\"metaDescription\";s:170:\"A section with a couple of profiles including image, description, and social icons (can also be used for team members). Perfect for wedding invitations and other events. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c486d9f52e15\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:83;a:13:{s:6:\"bundle\";s:28:\"template/showcaseHeroSection\";s:4:\"name\";s:21:\"Showcase Hero Section\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1551184009.showcaseHeroSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1551184009.showcaseHeroSection-preview.png\";s:15:\"metaDescription\";s:72:\"A colorful hero section with a menu and showcase block to promote works.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c752f3218831\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:84;a:13:{s:6:\"bundle\";s:28:\"template/studioHeaderSection\";s:4:\"name\";s:21:\"Studio Header Section\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1551184067.studioHeaderSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1551184067.studioHeaderSection-preview.png\";s:15:\"metaDescription\";s:97:\"A header section for an agency or web design studio with logo, menu, bold headline, and graphics.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c752a56b5d2a\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:85;a:13:{s:6:\"bundle\";s:29:\"template/breexProductHomepage\";s:4:\"name\";s:22:\"Breex Product Homepage\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1552640017.breexProductHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1552640017.breexProductHomepage-preview.png\";s:15:\"metaDescription\";s:176:\"A homepage template suitable for an online store of small and medium business from the Breex template set. Comes with a hero sections, product description, and image galleries.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5c8a3df6ed51c\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:86;a:13:{s:6:\"bundle\";s:32:\"template/breexProductDescription\";s:4:\"name\";s:25:\"Breex Product Description\";s:16:\"metaThumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1552640814.breexProductDescription-thumbnail.png\";s:14:\"metaPreviewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1552640814.breexProductDescription-preview.png\";s:15:\"metaDescription\";s:66:\"Simple product description block with three animated images below.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c8a364bbc42d\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:87;a:13:{s:6:\"bundle\";s:30:\"template/breexHeroSectionBlock\";s:4:\"name\";s:24:\"Breex Hero Section Block\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1552641029.breexHeroSectionBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1552641029.breexHeroSectionBlock-preview.png\";s:15:\"metaDescription\";s:128:\"A hero section block with title, button, and background image. A clean white space is left on the left side of the hero section.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c8a3601995e9\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:88;a:13:{s:6:\"bundle\";s:27:\"template/breexProductHeader\";s:4:\"name\";s:20:\"Breex Product Header\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1552641254.breexProductHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1552641254.breexProductHeader-preview.png\";s:15:\"metaDescription\";s:166:\"A header that is suitable for an online store of small and medium business from the Breex template set. Comes with a logo, menu, and shopping cart icon on the right. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5c8b6c1162441\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:89;a:13:{s:6:\"bundle\";s:27:\"template/breexProductFooter\";s:4:\"name\";s:20:\"Breex Product Footer\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1552641447.breexProductFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1552641447.breexProductFooter-preview.png\";s:15:\"metaDescription\";s:129:\"A footer suitable for an online store of small and medium business from the Breex template set. Includes social icons and a menu.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:13:\"5c8b6cf4286b5\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:90;a:13:{s:6:\"bundle\";s:23:\"template/breexAboutPage\";s:4:\"name\";s:16:\"Breex About Page\";s:16:\"metaThumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1553519860.breexAboutPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1553519860.breexAboutPage-preview.png\";s:15:\"metaDescription\";s:194:\"An about page template suitable for an online store of small and medium business from the Breex template set. Comes with a brief introduction, company history, and team section for any business.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5c98d16e54e3c\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:91;a:13:{s:6:\"bundle\";s:25:\"template/breexTeamSection\";s:4:\"name\";s:18:\"Breex Team Section\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1553520177.breexTeamSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1553520177.breexTeamSection-preview.png\";s:15:\"metaDescription\";s:55:\"A simple team section with an image, name and position.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c98d547c16af\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:92;a:13:{s:6:\"bundle\";s:25:\"template/breexBlogArticle\";s:4:\"name\";s:18:\"Breex Blog Article\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1553520615.breexBlogArticle-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1553520615.breexBlogArticle-preview.png\";s:15:\"metaDescription\";s:202:\"A clean blog article template suitable for an online store of small and medium business from the Breex template set. Consists of featured image and gallery to post a blog article, case study, or review.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5c98d6ceaa471\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:93;a:13:{s:6:\"bundle\";s:25:\"template/breexProductPage\";s:4:\"name\";s:18:\"Breex Product Page\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1553520916.breexProductPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1553520916.breexProductPage-preview.png\";s:15:\"metaDescription\";s:173:\"A clean product page suitable for an online store of small and medium business from the Breex template set. Includes colorful product blocks to outline the type of products.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5c98d8425d1e7\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:94;a:13:{s:6:\"bundle\";s:28:\"template/breexProductSection\";s:4:\"name\";s:21:\"Breex Product Section\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1553521173.breexProductSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1553521173.breexProductSection-preview.png\";s:15:\"metaDescription\";s:73:\"A three column product section with colorful blocks to showcase products.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5c98d94010832\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:95;a:13:{s:6:\"bundle\";s:31:\"template/rohuPhotographyGallery\";s:4:\"name\";s:24:\"Rohu Photography Gallery\";s:16:\"metaThumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554189109.rohuPhotographyGallery-thumbnail.png\";s:14:\"metaPreviewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554189109.rohuPhotographyGallery-preview.png\";s:15:\"metaDescription\";s:204:\"A gallery page template from the Rohu template set. Includes a masonry image gallery and perfect for a portfolio website of creative professionals like photographers, website designers, artists, and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5ca308eea3727\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:96;a:13:{s:6:\"bundle\";s:25:\"template/rohuSimpleHeader\";s:4:\"name\";s:18:\"Rohu Simple Header\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554189937.rohuSimpleHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554189937.rohuSimpleHeader-preview.png\";s:15:\"metaDescription\";s:171:\"A header from the Rohu template set for a portfolio website of creative professionals like photographers, website designers, artists, and more. Includes a menu and a logo.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5ca30e3ccae96\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:97;a:13:{s:6:\"bundle\";s:22:\"template/rohuAboutPage\";s:4:\"name\";s:15:\"Rohu About Page\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554190455.rohuAboutPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554190455.rohuAboutPage-preview.png\";s:15:\"metaDescription\";s:157:\"An about page template from the Rohu template set for a portfolio website of creative professionals like photographers, website designers, artists, and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5ca30fc796ecb\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:98;a:13:{s:6:\"bundle\";s:33:\"template/rohuPhotographyPortfolio\";s:4:\"name\";s:26:\"Rohu Photography Portfolio\";s:16:\"metaThumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554191671.rohuPhotographyPortfolio-thumbnail.png\";s:14:\"metaPreviewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554191671.rohuPhotographyPortfolio-preview.png\";s:15:\"metaDescription\";s:154:\"A homepage template from the Rohu template set for a portfolio website of creative professionals like photographers, website designers, artists, and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5ca3140a2bf86\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:99;a:13:{s:6:\"bundle\";s:24:\"template/rohuHeaderBlock\";s:4:\"name\";s:17:\"Rohu Header Block\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554191914.rohuHeaderBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554191914.rohuHeaderBlock-preview.png\";s:15:\"metaDescription\";s:75:\"A creative header section block with a large image, menu, and introduction.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5ca31577da9c2\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:100;a:13:{s:6:\"bundle\";s:25:\"template/rohuAboutSection\";s:4:\"name\";s:18:\"Rohu About Section\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554192694.rohuAboutSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554192694.rohuAboutSection-preview.png\";s:15:\"metaDescription\";s:68:\"An about section for photography portfolio with a brief description.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5ca3186ec8d78\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:101;a:13:{s:6:\"bundle\";s:25:\"template/rohuClientsBlock\";s:4:\"name\";s:18:\"Rohu Clients Block\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554192772.rohuClientsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554192772.rohuClientsBlock-preview.png\";s:15:\"metaDescription\";s:78:\"A block with customer testimonial and client logos to showcase the experience.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5ca318a426498\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:102;a:13:{s:6:\"bundle\";s:28:\"template/rohuContactsSection\";s:4:\"name\";s:21:\"Rohu Contacts Section\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554192829.rohuContactsSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554192829.rohuContactsSection-preview.png\";s:15:\"metaDescription\";s:76:\"A clean and simple contact section with Google Maps and contact information.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5ca318ce0f842\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:103;a:13:{s:6:\"bundle\";s:31:\"template/scoopLandingPageFooter\";s:4:\"name\";s:25:\"Scoop Landing Page Footer\";s:16:\"metaThumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554565160.scoopLandingPageFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554565160.scoopLandingPageFooter-preview.png\";s:15:\"metaDescription\";s:112:\"A footer from the Scoop template set. Perfect for creative, digital, marketing, advertising, and other agencies.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:13:\"5ca8c7bee2086\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:104;a:13:{s:6:\"bundle\";s:28:\"template/scoopCaseStudyBlock\";s:4:\"name\";s:22:\"Scoop Case Study Block\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554565245.scoopCaseStudyBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554565245.scoopCaseStudyBlock-preview.png\";s:15:\"metaDescription\";s:95:\"A clean two column block with case study information and project screenshot image on the right.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5ca8c5f252a9e\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:105;a:13:{s:6:\"bundle\";s:27:\"template/scoopFeaturesBlock\";s:4:\"name\";s:20:\"Scoop Features Block\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554565326.scoopFeaturesBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554565326.scoopFeaturesBlock-preview.png\";s:15:\"metaDescription\";s:65:\"Clean feature block with three columns with a shadow box effect. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5ca8c4f95bd4d\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:106;a:13:{s:6:\"bundle\";s:25:\"template/scoopLandingPage\";s:4:\"name\";s:18:\"Scoop Landing Page\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554565420.scoopLandingPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1554565420.scoopLandingPage-preview.png\";s:15:\"metaDescription\";s:168:\"A simple landing page with a hero image, information, case study, testimonials, and contacts. Perfect for creative, digital, marketing, advertising, and other agencies.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5ca8c3a8e7248\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:107;a:13:{s:6:\"bundle\";s:23:\"template/transpecHeader\";s:4:\"name\";s:15:\"Transpec Header\";s:16:\"metaThumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555587371.transpecHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555587371.transpecHeader-preview.png\";s:15:\"metaDescription\";s:152:\"A large header with menu, button, and call to action block. Perfect for software, mobile app, or other digital services from the Transpec template set. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5cb86099653af\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:108;a:13:{s:6:\"bundle\";s:23:\"template/transpecFooter\";s:4:\"name\";s:15:\"Transpec Footer\";s:16:\"metaThumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555587438.transpecFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555587438.transpecFooter-preview.png\";s:15:\"metaDescription\";s:93:\"A footer for software, mobile app, or other digital services from the Transpec template set. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:13:\"5cb8616121a54\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:109;a:13:{s:6:\"bundle\";s:26:\"template/transpecCaseStudy\";s:4:\"name\";s:19:\"Transpec Case Study\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555588284.transpecCaseStudy-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555588284.transpecCaseStudy-preview.png\";s:15:\"metaDescription\";s:181:\"A case study template page from the Transpec template set with description and feature highlights - perfect for software, mobile application, and other digital products or services.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5cb8632bb0c28\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:110;a:13:{s:6:\"bundle\";s:29:\"template/transpecFeaturesPage\";s:4:\"name\";s:22:\"Transpec Features Page\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555588418.transpecFeaturesPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555588418.transpecFeaturesPage-preview.png\";s:15:\"metaDescription\";s:132:\"A page from the Transpec template set to represent features of software, mobile application, and other digital products or services.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5cb86278c6a99\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:111;a:13:{s:6:\"bundle\";s:25:\"template/transpecTourPage\";s:4:\"name\";s:18:\"Transpec Tour Page\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555588502.transpecTourPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555588502.transpecTourPage-preview.png\";s:15:\"metaDescription\";s:125:\"A tour page from the Transpec template set to represent software, mobile application, and other digital products or services.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5cb861a17de7f\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:112;a:13:{s:6:\"bundle\";s:25:\"template/transpecHomepage\";s:4:\"name\";s:17:\"Transpec Homepage\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555588567.transpecHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555588567.transpecHomepage-preview.png\";s:15:\"metaDescription\";s:161:\"A minimalist homepage for software, mobile app, or other digital services from the Transpec template set. A great place to add a Phone or Browser Mockup element.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5cb85c1f5af97\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:113;a:13:{s:6:\"bundle\";s:34:\"template/transpecTestimonialsBlock\";s:4:\"name\";s:27:\"Transpec Testimonials Block\";s:16:\"metaThumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555588635.transpecTestimonialsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555588635.transpecTestimonialsBlock-preview.png\";s:15:\"metaDescription\";s:87:\"A simple testimonial, feedback and review block template with an image, name and quote.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5cb85e3fc02ae\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:114;a:13:{s:6:\"bundle\";s:34:\"template/transpecCallToActionBlock\";s:4:\"name\";s:29:\"Transpec Call to Action Block\";s:16:\"metaThumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555588687.transpecCallToActionBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555588687.transpecCallToActionBlock-preview.png\";s:15:\"metaDescription\";s:55:\"A colorful call to action block with image and message.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5cb85dbd85269\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:115;a:13:{s:6:\"bundle\";s:38:\"template/transpecFeatureHighlightBlock\";s:4:\"name\";s:32:\"Transpec Feature Highlight Block\";s:16:\"metaThumbnailUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555588754.transpecFeatureHighlightBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555588754.transpecFeatureHighlightBlock-preview.png\";s:15:\"metaDescription\";s:81:\"A feature highlight block template with product or service image and description.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5cb85d43ce1ce\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:116;a:13:{s:6:\"bundle\";s:30:\"template/transpecFeaturesBlock\";s:4:\"name\";s:23:\"Transpec Features Block\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555588849.transpecFeaturesBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1555588849.transpecFeaturesBlock-preview.png\";s:15:\"metaDescription\";s:73:\"A simple feature block to represent the features of a product or service.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5cb85cc563474\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:117;a:13:{s:6:\"bundle\";s:26:\"template/landingPageFooter\";s:4:\"name\";s:19:\"Landing Page Footer\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1556530072.landingPageFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1556530072.landingPageFooter-preview.png\";s:15:\"metaDescription\";s:79:\"A landing page footer template with a menu, social icons, and background image.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:13:\"5cc6c34fae84d\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:118;a:13:{s:6:\"bundle\";s:28:\"template/landingPageFAQBlock\";s:4:\"name\";s:22:\"Landing Page FAQ Block\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1556530588.landingPageFAQBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1556530588.landingPageFAQBlock-preview.png\";s:15:\"metaDescription\";s:89:\"A clean FAQ (frequently asked questions) block with toggle elements and light background.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5cc6c2cc1e5ba\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:119;a:13:{s:6:\"bundle\";s:38:\"template/landingPageThreeFeaturesBlock\";s:4:\"name\";s:33:\"Landing Page Three Features Block\";s:16:\"metaThumbnailUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1556530656.landingPageThreeFeaturesBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1556530656.landingPageThreeFeaturesBlock-preview.png\";s:15:\"metaDescription\";s:58:\"A three feature block with title, images, and description.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5cc6c2ad0e71f\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:120;a:13:{s:6:\"bundle\";s:37:\"template/landingPageTestimonialsBlock\";s:4:\"name\";s:31:\"Landing Page Testimonials Block\";s:16:\"metaThumbnailUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1556530719.landingPageTestimonialsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1556530719.landingPageTestimonialsBlock-preview.png\";s:15:\"metaDescription\";s:89:\"A colorful testimonials block with background image and small testimonials at the bottom.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5cc6c25cd376b\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:121;a:13:{s:6:\"bundle\";s:33:\"template/landingPageFeaturesBlock\";s:4:\"name\";s:27:\"Landing Page Features Block\";s:16:\"metaThumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1556530776.landingPageFeaturesBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1556530776.landingPageFeaturesBlock-preview.png\";s:15:\"metaDescription\";s:65:\"A clean and simple feature block with description and two images.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5cc6c23545cc1\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:122;a:13:{s:6:\"bundle\";s:27:\"template/simpleBlogHomepage\";s:4:\"name\";s:20:\"Simple Blog Homepage\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1557321106.simpleBlogHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1557321106.simpleBlogHomepage-preview.png\";s:15:\"metaDescription\";s:99:\"A homepage template for a personal blog or online journal to share thoughts and ideas on any topic.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5cd2b92498a17\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:123;a:13:{s:6:\"bundle\";s:32:\"template/veganRestaurantHomepage\";s:4:\"name\";s:25:\"Vegan Restaurant Homepage\";s:16:\"metaThumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561464734.veganRestaurantHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561464734.veganRestaurantHomepage-preview.png\";s:15:\"metaDescription\";s:74:\"A homepage template for restaurants, cafes and bars with menu and gallery.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d120cf215344\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:124;a:13:{s:6:\"bundle\";s:28:\"template/veganRestaurantMenu\";s:4:\"name\";s:21:\"Vegan Restaurant Menu\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561464799.veganRestaurantMenu-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561464799.veganRestaurantMenu-preview.png\";s:15:\"metaDescription\";s:52:\"A menu page template for restaurants, cafes or bars.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d120cd0a558a\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:125;a:13:{s:6:\"bundle\";s:31:\"template/veganRestaurantGallery\";s:4:\"name\";s:24:\"Vegan Restaurant Gallery\";s:16:\"metaThumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561464894.veganRestaurantGallery-thumbnail.png\";s:14:\"metaPreviewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561464894.veganRestaurantGallery-preview.png\";s:15:\"metaDescription\";s:55:\"A gallery page template for restaurants, cafes or bars.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d120ce19117b\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:126;a:13:{s:6:\"bundle\";s:30:\"template/veganRestaurantHeader\";s:4:\"name\";s:23:\"Vegan Restaurant Header\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561465422.veganRestaurantHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561465422.veganRestaurantHeader-preview.png\";s:15:\"metaDescription\";s:80:\"A homepage template for restaurants, cafes and bars with menu, logo and button. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5d12115b92610\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:127;a:13:{s:6:\"bundle\";s:30:\"template/veganRestaurantFooter\";s:4:\"name\";s:23:\"Vegan Restaurant Footer\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561465568.veganRestaurantFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561465568.veganRestaurantFooter-preview.png\";s:15:\"metaDescription\";s:99:\"A footer for restaurants, cafes and bars with menu and gallery. Includes menus divided in sections.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:13:\"5d1212524aa62\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:128;a:13:{s:6:\"bundle\";s:37:\"template/veganRestaurantFeaturesBlock\";s:4:\"name\";s:31:\"Vegan Restaurant Features Block\";s:16:\"metaThumbnailUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561466893.veganRestaurantFeaturesBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561466893.veganRestaurantFeaturesBlock-preview.png\";s:15:\"metaDescription\";s:72:\"A three features block with background image and call to action message.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d1215ab26304\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:129;a:13:{s:6:\"bundle\";s:33:\"template/veganRestaurantMenuBlock\";s:4:\"name\";s:27:\"Vegan Restaurant Menu Block\";s:16:\"metaThumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561467293.veganRestaurantMenuBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561467293.veganRestaurantMenuBlock-preview.png\";s:15:\"metaDescription\";s:69:\"A three column block for displaying the menu of a restaurant or cafe.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d12184223ef6\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:130;a:13:{s:6:\"bundle\";s:41:\"template/veganRestaurantTestimonialsBlock\";s:4:\"name\";s:35:\"Vegan Restaurant Testimonials Block\";s:16:\"metaThumbnailUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561467572.veganRestaurantTestimonialsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561467572.veganRestaurantTestimonialsBlock-preview.png\";s:15:\"metaDescription\";s:99:\"A colorful testimonial block with feedback or review and background image for a restaurant or cafe.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d1219f185796\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:131;a:13:{s:6:\"bundle\";s:32:\"template/designerPortfolioFooter\";s:4:\"name\";s:25:\"Designer Portfolio Footer\";s:16:\"metaThumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561471629.designerPortfolioFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561471629.designerPortfolioFooter-preview.png\";s:15:\"metaDescription\";s:110:\"A footer for designers, design agency and other creatives. Includes a call to action, social icons and a menu.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:13:\"5d122a24b0990\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:132;a:13:{s:6:\"bundle\";s:34:\"template/designerPortfolioHomepage\";s:4:\"name\";s:27:\"Designer Portfolio Homepage\";s:16:\"metaThumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561471775.designerPortfolioHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561471775.designerPortfolioHomepage-preview.png\";s:15:\"metaDescription\";s:132:\"A portfolio homepage for designers, design agency and other creatives. Includes an asymmetrical grid layout, header footer and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d1221672a2a9\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:133;a:13:{s:6:\"bundle\";s:38:\"template/designerPortfolioIntroduction\";s:4:\"name\";s:31:\"Designer Portfolio Introduction\";s:16:\"metaThumbnailUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561471843.designerPortfolioIntroduction-thumbnail.png\";s:14:\"metaPreviewUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561471843.designerPortfolioIntroduction-preview.png\";s:15:\"metaDescription\";s:55:\"A portfolio homepage for designers and other creatives.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d12218147e77\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:134;a:13:{s:6:\"bundle\";s:34:\"template/designerPortfolioServices\";s:4:\"name\";s:27:\"Designer Portfolio Services\";s:16:\"metaThumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561471937.designerPortfolioServices-thumbnail.png\";s:14:\"metaPreviewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561471937.designerPortfolioServices-preview.png\";s:15:\"metaDescription\";s:93:\"A template to represent services - suitable for designers, design agency and other creatives.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d1221959dc6c\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:135;a:13:{s:6:\"bundle\";s:37:\"template/designerPortfolioCaseStudies\";s:4:\"name\";s:31:\"Designer Portfolio Case Studies\";s:16:\"metaThumbnailUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561472006.designerPortfolioCaseStudies-thumbnail.png\";s:14:\"metaPreviewUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561472006.designerPortfolioCaseStudies-preview.png\";s:15:\"metaDescription\";s:118:\"A category type page for representing creative case studies. Perfect for designer, design agency and other creatives. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d1221ad2c9cc\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:136;a:13:{s:6:\"bundle\";s:35:\"template/designerPortfolioCaseStudy\";s:4:\"name\";s:29:\"Designer Portfolio Case Study\";s:16:\"metaThumbnailUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561472081.designerPortfolioCaseStudy-thumbnail.png\";s:14:\"metaPreviewUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561472081.designerPortfolioCaseStudy-preview.png\";s:15:\"metaDescription\";s:121:\"A case study template to represent a specific work done for clients. Perfect for designers, agencies and other creatives.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d1221c601539\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:137;a:13:{s:6:\"bundle\";s:30:\"template/designerPortfolioBlog\";s:4:\"name\";s:23:\"Designer Portfolio Blog\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561472137.designerPortfolioBlog-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561472137.designerPortfolioBlog-preview.png\";s:15:\"metaDescription\";s:72:\"A blog category page layout for designers, agencies and other creatives.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d1221dacd8f9\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:138;a:13:{s:6:\"bundle\";s:39:\"template/designerPortfolioServicesBlock\";s:4:\"name\";s:33:\"Designer Portfolio Services Block\";s:16:\"metaThumbnailUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561472920.designerPortfolioServicesBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561472920.designerPortfolioServicesBlock-preview.png\";s:15:\"metaDescription\";s:59:\"A colorful section to represent the services of a business.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d122cc68c399\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:139;a:13:{s:6:\"bundle\";s:38:\"template/designerPortfolioClientsBlock\";s:4:\"name\";s:32:\"Designer Portfolio Clients Block\";s:16:\"metaThumbnailUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561472972.designerPortfolioClientsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561472972.designerPortfolioClientsBlock-preview.png\";s:15:\"metaDescription\";s:67:\"A block to showcase clients and testimonials, feedback and reviews.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d122ce5efd2a\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:140;a:13:{s:6:\"bundle\";s:43:\"template/designerPortfolioBlogArticlesBlock\";s:4:\"name\";s:38:\"Designer Portfolio Blog Articles Block\";s:16:\"metaThumbnailUrl\";s:109:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561473057.designerPortfolioBlogArticlesBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1561473057.designerPortfolioBlogArticlesBlock-preview.png\";s:15:\"metaDescription\";s:55:\"A three column block to showcase the latest blog posts.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d122db1c9fa5\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:141;a:13:{s:6:\"bundle\";s:31:\"template/solutionBusinessHeader\";s:4:\"name\";s:24:\"Solution Business Header\";s:16:\"metaThumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562156491.solutionBusinessHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562156491.solutionBusinessHeader-preview.png\";s:15:\"metaDescription\";s:152:\"A header template perfect for business, finance, construction, consultant, insurance, telecommunication solutions, and more. Includes a menu and a logo.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5d1c9d5bde16e\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:142;a:13:{s:6:\"bundle\";s:36:\"template/solutionBusinessLargeHeader\";s:4:\"name\";s:30:\"Solution Business Large Header\";s:16:\"metaThumbnailUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562156595.solutionBusinessLargeHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562156595.solutionBusinessLargeHeader-preview.png\";s:15:\"metaDescription\";s:186:\"A large header template perfect for business, finance, construction, consultant, insurance, telecommunication solutions, and more. Includes a menu block and hero image in the background.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5d1c9dd78007a\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:143;a:13:{s:6:\"bundle\";s:33:\"template/solutionBusinessHomepage\";s:4:\"name\";s:26:\"Solution Business Homepage\";s:16:\"metaThumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562156699.solutionBusinessHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562156699.solutionBusinessHomepage-preview.png\";s:15:\"metaDescription\";s:196:\"A comprehensive business homepage template with services, testimonials and other information listed. Perfect for finance, construction, consultant, insurance, telecommunication solutions and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d1b8eb2eec37\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:144;a:13:{s:6:\"bundle\";s:29:\"template/solutionBusinessNews\";s:4:\"name\";s:22:\"Solution Business News\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562156747.solutionBusinessNews-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562156747.solutionBusinessNews-preview.png\";s:15:\"metaDescription\";s:176:\"A news page template for a business site to post latest updates and information. Perfect for finance, construction, consultant, insurance, telecommunication solutions and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d1b93ac5e148\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:145;a:13:{s:6:\"bundle\";s:33:\"template/solutionBusinessContacts\";s:4:\"name\";s:26:\"Solution Business Contacts\";s:16:\"metaThumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562156824.solutionBusinessContacts-thumbnail.png\";s:14:\"metaPreviewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562156824.solutionBusinessContacts-preview.png\";s:15:\"metaDescription\";s:192:\"A contact page template for a business website with all the contact information and Google Maps. Perfect for finance, construction, consultant, insurance, telecommunication solutions and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d1b960d970f3\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:146;a:13:{s:6:\"bundle\";s:33:\"template/solutionBusinessServices\";s:4:\"name\";s:26:\"Solution Business Services\";s:16:\"metaThumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562156881.solutionBusinessServices-thumbnail.png\";s:14:\"metaPreviewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562156881.solutionBusinessServices-preview.png\";s:15:\"metaDescription\";s:182:\"A business page template to represent company services or features in a catalog view. Perfect for finance, construction, consultant, insurance, telecommunication solutions and more. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d1b990d395b4\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:147;a:13:{s:6:\"bundle\";s:42:\"template/solutionBusinessTestimonialsBlock\";s:4:\"name\";s:36:\"Solution Business Testimonials Block\";s:16:\"metaThumbnailUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562156967.solutionBusinessTestimonialsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562156967.solutionBusinessTestimonialsBlock-preview.png\";s:15:\"metaDescription\";s:68:\"A clean single testimonial block on a blue background with an image.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d1baa2f47f99\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:148;a:13:{s:6:\"bundle\";s:38:\"template/solutionBusinessServicesBlock\";s:4:\"name\";s:32:\"Solution Business Services Block\";s:16:\"metaThumbnailUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562157048.solutionBusinessServicesBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562157048.solutionBusinessServicesBlock-preview.png\";s:15:\"metaDescription\";s:67:\"A colorful services block template on a blue background with icons.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d1baa7d317ef\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:149;a:13:{s:6:\"bundle\";s:38:\"template/solutionBusinessFeaturesBlock\";s:4:\"name\";s:32:\"Solution Business Features Block\";s:16:\"metaThumbnailUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562157125.solutionBusinessFeaturesBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562157125.solutionBusinessFeaturesBlock-preview.png\";s:15:\"metaDescription\";s:78:\"A clean and white features block with icons to represent features or services.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d1baadab44c5\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:150;a:13:{s:6:\"bundle\";s:38:\"template/solutionBusinessContactsBlock\";s:4:\"name\";s:32:\"Solution Business Contacts Block\";s:16:\"metaThumbnailUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562157206.solutionBusinessContactsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562157206.solutionBusinessContactsBlock-preview.png\";s:15:\"metaDescription\";s:93:\"A business type contacts block on a blue background with contact information and Google Maps.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d1bab1a8bf4e\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:151;a:13:{s:6:\"bundle\";s:36:\"template/solutionBusinessBannerBlock\";s:4:\"name\";s:30:\"Solution Business Banner Block\";s:16:\"metaThumbnailUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562157315.solutionBusinessBannerBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562157315.solutionBusinessBannerBlock-preview.png\";s:15:\"metaDescription\";s:71:\"A banner block for a business website with an image and call to action.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d1babd373bce\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:152;a:13:{s:6:\"bundle\";s:34:\"template/solutionBusinessNewsBlock\";s:4:\"name\";s:28:\"Solution Business News Block\";s:16:\"metaThumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587037649.solutionBusinessNewsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587037649.solutionBusinessNewsBlock-preview.png\";s:15:\"metaDescription\";s:76:\"An archive type news section divided into 3 columns for a business website. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d1bac77079c4\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:153;a:13:{s:6:\"bundle\";s:30:\"template/mediumStyleBlogHeader\";s:4:\"name\";s:24:\"Medium Style Blog Header\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562831422.mediumStyleBlogHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562831422.mediumStyleBlogHeader-preview.png\";s:15:\"metaDescription\";s:137:\"A clean header for a blog. Perfect for lifestyle, personal design, marketing blog. Includes a logo and a menu with a colorful background.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5d26e96e9830c\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:154;a:13:{s:6:\"bundle\";s:40:\"template/mediumStyleRelatedArticlesBlock\";s:4:\"name\";s:35:\"Medium Style Related Articles Block\";s:16:\"metaThumbnailUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562831489.mediumStyleRelatedArticlesBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562831489.mediumStyleRelatedArticlesBlock-preview.png\";s:15:\"metaDescription\";s:87:\"A block template for related blog articles or archives with 3 articles listed in a row.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d25e7102f2fc\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:155;a:13:{s:6:\"bundle\";s:32:\"template/mediumStyleBlogHomepage\";s:4:\"name\";s:26:\"Medium Style Blog Homepage\";s:16:\"metaThumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562831584.mediumStyleBlogHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1562831584.mediumStyleBlogHomepage-preview.png\";s:15:\"metaDescription\";s:142:\"A homepage for a blog. Perfect for lifestyle, personal design, marketing blog. Includes author information, article, archive section and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d25e5ea95223\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:156;a:13:{s:6:\"bundle\";s:22:\"template/elifAboutPage\";s:4:\"name\";s:15:\"Elif About Page\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1564381871.elifAboutPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1564381871.elifAboutPage-preview.png\";s:15:\"metaDescription\";s:97:\"A simple about page for a business site, product page or online blog from the Elif template set. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d38a4a9c3206\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:157;a:13:{s:6:\"bundle\";s:21:\"template/elifContacts\";s:4:\"name\";s:13:\"Elif Contacts\";s:16:\"metaThumbnailUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1564382068.elifContacts-thumbnail.png\";s:14:\"metaPreviewUrl\";s:85:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1564382068.elifContacts-preview.png\";s:15:\"metaDescription\";s:92:\"A contact page for a business site, product page or online blog from the Elif template set. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d38a4e48f15c\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:158;a:13:{s:6:\"bundle\";s:22:\"template/fashionHeader\";s:4:\"name\";s:14:\"Fashion Header\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565689972.fashionHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565689972.fashionHeader-preview.png\";s:15:\"metaDescription\";s:179:\"A header for an eCommerce store that can be adapted for any retail sector industries like fashion, clothing, and more. Includes logo, menu in the middle, and social profile icons.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5d52885ad0df3\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:159;a:13:{s:6:\"bundle\";s:22:\"template/fashionFooter\";s:4:\"name\";s:14:\"Fashion Footer\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565690068.fashionFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565690068.fashionFooter-preview.png\";s:15:\"metaDescription\";s:157:\"A footer for an eCommerce store that can be adapted for any retail sector industries like fashion, clothing, and more. Includes contact information and menu.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:13:\"5d5288bdbcc82\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:160;a:13:{s:6:\"bundle\";s:32:\"template/fashionBestSellingBlock\";s:4:\"name\";s:26:\"Fashion Best Selling Block\";s:16:\"metaThumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565690182.fashionBestSellingBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565690182.fashionBestSellingBlock-preview.png\";s:15:\"metaDescription\";s:57:\"A section template to showcase the best selling products.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d4c151ec1c85\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:161;a:13:{s:6:\"bundle\";s:30:\"template/fashionGallerySection\";s:4:\"name\";s:23:\"Fashion Gallery Section\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565690279.fashionGallerySection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565690279.fashionGallerySection-preview.png\";s:15:\"metaDescription\";s:53:\"A section template for a gallery or product showcase.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d4c12f569670\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:162;a:13:{s:6:\"bundle\";s:27:\"template/fashionBlogSection\";s:4:\"name\";s:20:\"Fashion Blog Section\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565693052.fashionBlogSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565693052.fashionBlogSection-preview.png\";s:15:\"metaDescription\";s:62:\"A section  to display new, recent, or most popular blog posts.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d4c127a57468\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:163;a:13:{s:6:\"bundle\";s:31:\"template/fashionBestSellingPage\";s:4:\"name\";s:25:\"Fashion Best Selling Page\";s:16:\"metaThumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565693721.fashionBestSellingPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565693721.fashionBestSellingPage-preview.png\";s:15:\"metaDescription\";s:150:\"A page template of best selling products for an eCommerce store that can be adapted for any retail sector industries like fashion, clothing, and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d4c08b388417\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:164;a:13:{s:6:\"bundle\";s:24:\"template/fashionBlogPage\";s:4:\"name\";s:17:\"Fashion Blog Page\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565695866.fashionBlogPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565695866.fashionBlogPage-preview.png\";s:15:\"metaDescription\";s:130:\"A blog page template for an eCommerce store that can be adapted for any retail sector industries like fashion, clothing, and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d4c03d0da039\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:165;a:13:{s:6:\"bundle\";s:30:\"template/fashionCollectionPage\";s:4:\"name\";s:23:\"Fashion Collection Page\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565695944.fashionCollectionPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565695944.fashionCollectionPage-preview.png\";s:15:\"metaDescription\";s:136:\"A collection page template for an eCommerce store that can be adapted for any retail sector industries like fashion, clothing, and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d4c038a315cb\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:166;a:13:{s:6:\"bundle\";s:27:\"template/fashionGalleryPage\";s:4:\"name\";s:20:\"Fashion Gallery Page\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565696032.fashionGalleryPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565696032.fashionGalleryPage-preview.png\";s:15:\"metaDescription\";s:133:\"A gallery page template for an eCommerce store that can be adapted for any retail sector industries like fashion, clothing, and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d4c033ba693b\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:167;a:13:{s:6:\"bundle\";s:24:\"template/fashionHomepage\";s:4:\"name\";s:16:\"Fashion Homepage\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565696115.fashionHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565696115.fashionHomepage-preview.png\";s:15:\"metaDescription\";s:209:\"A homepage template for an eCommerce store that can be adapted for any retail sector industries like fashion, clothing, and more. Includes colorful hero section, gallery, star ranking, pricing values and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d4c031175eec\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:168;a:13:{s:6:\"bundle\";s:20:\"template/bloogHeader\";s:4:\"name\";s:12:\"Bloog Header\";s:16:\"metaThumbnailUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565872897.bloogHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:84:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565872897.bloogHeader-preview.png\";s:15:\"metaDescription\";s:61:\"A header for a blog or magazine. Includes a logo and a menu. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5d5552eae1cad\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:169;a:13:{s:6:\"bundle\";s:29:\"template/bloogSinglePostBlock\";s:4:\"name\";s:23:\"Bloog Single Post Block\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565872986.bloogSinglePostBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565872986.bloogSinglePostBlock-preview.png\";s:15:\"metaDescription\";s:63:\"A single blog post teaser with a background and featured image.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d554244aea25\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:170;a:13:{s:6:\"bundle\";s:29:\"template/bloogDoublePostBlock\";s:4:\"name\";s:23:\"Bloog Double Post Block\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565873070.bloogDoublePostBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565873070.bloogDoublePostBlock-preview.png\";s:15:\"metaDescription\";s:57:\"A section with two blog post teasers and featured images.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d5543451647b\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:171;a:13:{s:6:\"bundle\";s:22:\"template/bloogHomepage\";s:4:\"name\";s:14:\"Bloog Homepage\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565873167.bloogHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1565873167.bloogHomepage-preview.png\";s:15:\"metaDescription\";s:62:\"A blog homepage template with archive or teaser article list. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d553fc042a45\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1655885684.bloogHomepage-intro-page-image.png\";s:11:\"isPageIntro\";b:1;}i:172;a:13:{s:6:\"bundle\";s:22:\"template/nutrickFooter\";s:4:\"name\";s:14:\"Nutrick Footer\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566923943.nutrickFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566923943.nutrickFooter-preview.png\";s:15:\"metaDescription\";s:111:\"A footer for entrepreneurial businesses and startups from the Nutrick template set. Includes a logo and a menu.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:13:\"5d655b8d965da\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:173;a:13:{s:6:\"bundle\";s:27:\"template/nutrickTeamSection\";s:4:\"name\";s:20:\"Nutrick Team Section\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566924588.nutrickTeamSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566924588.nutrickTeamSection-preview.png\";s:15:\"metaDescription\";s:67:\"Team section template with teammate\'s photos, names, and positions.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d650ede730c2\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:174;a:13:{s:6:\"bundle\";s:35:\"template/nutrickTestimonialsSection\";s:4:\"name\";s:28:\"Nutrick Testimonials Section\";s:16:\"metaThumbnailUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566924770.nutrickTestimonialsSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566924770.nutrickTestimonialsSection-preview.png\";s:15:\"metaDescription\";s:88:\"Showcase testimonials with Nutrick template set block for customer feedback and reviews.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d650e2a43f27\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:175;a:13:{s:6:\"bundle\";s:31:\"template/nutrickServicesSection\";s:4:\"name\";s:24:\"Nutrick Services Section\";s:16:\"metaThumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566924880.nutrickServicesSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566924880.nutrickServicesSection-preview.png\";s:15:\"metaDescription\";s:81:\"Showcase services with a beautiful service section from the Nutrick template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d650dd33cd64\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:176;a:13:{s:6:\"bundle\";s:28:\"template/nutrickPricingTable\";s:4:\"name\";s:21:\"Nutrick Pricing Table\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566924982.nutrickPricingTable-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566924982.nutrickPricingTable-preview.png\";s:15:\"metaDescription\";s:54:\"A pricing table section from the Nutrick template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d650ce9e2a73\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:177;a:13:{s:6:\"bundle\";s:27:\"template/nutrickHeroSection\";s:4:\"name\";s:20:\"Nutrick Hero Section\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566925071.nutrickHeroSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566925071.nutrickHeroSection-preview.png\";s:15:\"metaDescription\";s:105:\"A simple and eye-catching hero section from the Nutrick template. Includes an image and a call to action.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d650bb050e74\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:178;a:13:{s:6:\"bundle\";s:28:\"template/nutrickServicesPage\";s:4:\"name\";s:21:\"Nutrick Services Page\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566928287.nutrickServicesPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566928287.nutrickServicesPage-preview.png\";s:15:\"metaDescription\";s:98:\"A service page template for entrepreneurial businesses and startups from the Nutrick template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d650a9e8121e\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:179;a:13:{s:6:\"bundle\";s:27:\"template/nutrickProjectPage\";s:4:\"name\";s:20:\"Nutrick Project Page\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566928618.nutrickProjectPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566928618.nutrickProjectPage-preview.png\";s:15:\"metaDescription\";s:111:\"A page template to showcase projects for entrepreneurial businesses and startups from the Nutrick template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d650a549d940\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:180;a:13:{s:6:\"bundle\";s:25:\"template/nutrickAboutPage\";s:4:\"name\";s:18:\"Nutrick About Page\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566928697.nutrickAboutPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566928697.nutrickAboutPage-preview.png\";s:15:\"metaDescription\";s:97:\"An about page template for entrepreneurial businesses and startups from the Nutrick template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d650993b7143\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:181;a:13:{s:6:\"bundle\";s:24:\"template/nutrickHomePage\";s:4:\"name\";s:16:\"Nutrick Homepage\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566928779.nutrickHomePage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1566928779.nutrickHomePage-preview.png\";s:15:\"metaDescription\";s:180:\"A beautiful and clean homepage template for entrepreneurial businesses and startups from the Nutrick template set. Includes header and footer, pricing table, testimonials and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d6509e5a039f\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1655885709.nutrickHomePage-intro-page-image.png\";s:11:\"isPageIntro\";b:1;}i:182;a:13:{s:6:\"bundle\";s:23:\"template/gGPersonalPage\";s:4:\"name\";s:16:\"GG Personal Page\";s:16:\"metaThumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1567682125.gGPersonalPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1567682125.gGPersonalPage-preview.png\";s:15:\"metaDescription\";s:70:\"A personal resume page to showcase a work experience, blog, portfolio.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d70c04077749\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:183;a:13:{s:6:\"bundle\";s:28:\"template/gGTestimonialsBlock\";s:4:\"name\";s:21:\"GG Testimonials Block\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1567682243.gGTestimonialsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1567682243.gGTestimonialsBlock-preview.png\";s:15:\"metaDescription\";s:68:\"Testimonial section template to share customer feedback and reviews.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d70e71d67ffb\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:184;a:13:{s:6:\"bundle\";s:24:\"template/gGShowcaseBlock\";s:4:\"name\";s:17:\"GG Showcase Block\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1567682316.gGShowcaseBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1567682316.gGShowcaseBlock-preview.png\";s:15:\"metaDescription\";s:64:\"A gallery block to showcase existing work, products or projects.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d70e7686723c\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:185;a:13:{s:6:\"bundle\";s:20:\"template/gGBlogBlock\";s:4:\"name\";s:13:\"GG Blog Block\";s:16:\"metaThumbnailUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1567682404.gGBlogBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:84:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1567682404.gGBlogBlock-preview.png\";s:15:\"metaDescription\";s:67:\"A blog teaser section to highlight latest articles or case studies.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5d70e7a4bf75d\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:186;a:13:{s:6:\"bundle\";s:29:\"template/architectureTemplate\";s:4:\"name\";s:21:\"Architecture Template\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1571684948.architectureTemplate-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1571684948.architectureTemplate-preview.png\";s:15:\"metaDescription\";s:86:\"A one-page layout for architecture, real estate agency or any other creative industry.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5da9904d4f172\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:187;a:13:{s:6:\"bundle\";s:38:\"template/architectureTemplateTeamBlock\";s:4:\"name\";s:32:\"Architecture Template Team Block\";s:16:\"metaThumbnailUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1571685054.architectureTemplateTeamBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1571685054.architectureTemplateTeamBlock-preview.png\";s:15:\"metaDescription\";s:47:\"A team block template to showcase team members.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5da99a994cac3\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:188;a:13:{s:6:\"bundle\";s:41:\"template/architectureTemplateClientsBlock\";s:4:\"name\";s:35:\"Architecture Template Clients Block\";s:16:\"metaThumbnailUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1571685170.architectureTemplateClientsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1571685170.architectureTemplateClientsBlock-preview.png\";s:15:\"metaDescription\";s:81:\"Showcase client\'s testimonials, feedback and reviews about products and services.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5da99cbb5fe05\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:189;a:13:{s:6:\"bundle\";s:41:\"template/architectureTemplateProjectBlock\";s:4:\"name\";s:35:\"Architecture Template Project Block\";s:16:\"metaThumbnailUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1571685285.architectureTemplateProjectBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1571685285.architectureTemplateProjectBlock-preview.png\";s:15:\"metaDescription\";s:98:\"Display a project portfolio by using an asymmetric grid layout from the Architecture template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5da9a378ebb7f\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:190;a:13:{s:6:\"bundle\";s:42:\"template/architectureTemplateFeaturesBlock\";s:4:\"name\";s:36:\"Architecture Template Features Block\";s:16:\"metaThumbnailUrl\";s:108:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1571685420.architectureTemplateFeaturesBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:106:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1571685420.architectureTemplateFeaturesBlock-preview.png\";s:15:\"metaDescription\";s:79:\"Show the most important features or benefits of a product, service, or company.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5da9a5580c5c9\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:191;a:13:{s:6:\"bundle\";s:35:\"template/architectureTemplateFooter\";s:4:\"name\";s:28:\"Architecture Template Footer\";s:16:\"metaThumbnailUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1571685518.architectureTemplateFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1571685518.architectureTemplateFooter-preview.png\";s:15:\"metaDescription\";s:114:\"A one-page layout for architecture, real estate agency or any other creative industry. Includes a logo and a menu.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:13:\"5dae044ca099c\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:192;a:13:{s:6:\"bundle\";s:35:\"template/architectureTemplateHeader\";s:4:\"name\";s:28:\"Architecture Template Header\";s:16:\"metaThumbnailUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1571685619.architectureTemplateHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1571685619.architectureTemplateHeader-preview.png\";s:15:\"metaDescription\";s:137:\"A large header template for architecture, real estate agency or any other creative industry. Includes a background image and zoom effect.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5dae04b04882e\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:193;a:13:{s:6:\"bundle\";s:25:\"template/404HalloweenPage\";s:4:\"name\";s:18:\"404 Halloween Page\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1572034065.404HalloweenPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1572034065.404HalloweenPage-preview.png\";s:15:\"metaDescription\";s:85:\"A spooky Halloween style 404 page that will help to save visitors from scary moments.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5db355650c0d8\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:194;a:13:{s:6:\"bundle\";s:27:\"template/sinloaCoffeeFooter\";s:4:\"name\";s:20:\"Sinloa Coffee Footer\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578060789.sinloaCoffeeFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578060789.sinloaCoffeeFooter-preview.png\";s:15:\"metaDescription\";s:140:\"A footer from the Sinloa Coffee template set. A great choice for coffee shop, restaurant or bar owners. Includes location and working hours.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:13:\"5e0f4b7482cfe\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:195;a:13:{s:6:\"bundle\";s:29:\"template/sinloaCoffeeHomePage\";s:4:\"name\";s:22:\"Sinloa Coffee Homepage\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578060910.sinloaCoffeeHomePage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578060910.sinloaCoffeeHomePage-preview.png\";s:15:\"metaDescription\";s:156:\"A homepage from the Sinloa Coffee template set. A great choice for coffee shop, restaurant or bar owners. Includes header and footer, testimonials and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5df8b0ce8ce8e\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1655885643.sinloaCoffeeHomePage-intro-page-image.png\";s:11:\"isPageIntro\";b:1;}i:196;a:13:{s:6:\"bundle\";s:36:\"template/sinloaCoffeeMaintenancePage\";s:4:\"name\";s:30:\"Sinloa Coffee Maintenance Page\";s:16:\"metaThumbnailUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578060967.sinloaCoffeeMaintenancePage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578060967.sinloaCoffeeMaintenancePage-preview.png\";s:15:\"metaDescription\";s:119:\"A maintenance mode page from the Sinloa Coffee template set. A great choice for coffee shop, restaurant or bar owners. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5df8b10d92120\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:197;a:13:{s:6:\"bundle\";s:29:\"template/sinloaCoffeeMenuPage\";s:4:\"name\";s:23:\"Sinloa Coffee Menu Page\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061045.sinloaCoffeeMenuPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061045.sinloaCoffeeMenuPage-preview.png\";s:15:\"metaDescription\";s:124:\"A menu page to list products from the Sinloa Coffee template set. A great choice for coffee shop, restaurant or bar owners. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5df8b14e71b2a\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:198;a:13:{s:6:\"bundle\";s:32:\"template/sinloaCoffeeContactPage\";s:4:\"name\";s:26:\"Sinloa Coffee Contact Page\";s:16:\"metaThumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061105.sinloaCoffeeContactPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061105.sinloaCoffeeContactPage-preview.png\";s:15:\"metaDescription\";s:151:\"A contact page from the Sinloa Coffee template set. A great choice for coffee shop, restaurant or bar owners. Includes a simple and clean contact form.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5df8b1dc9ef9e\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:199;a:13:{s:6:\"bundle\";s:35:\"template/sinloaCoffeeComingSoonPage\";s:4:\"name\";s:30:\"Sinloa Coffee Coming Soon Page\";s:16:\"metaThumbnailUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061158.sinloaCoffeeComingSoonPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061158.sinloaCoffeeComingSoonPage-preview.png\";s:15:\"metaDescription\";s:113:\"A coming soon page from the Sinloa Coffee template set. A great choice for coffee shop, restaurant or bar owners.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5df8b21befe63\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:200;a:13:{s:6:\"bundle\";s:29:\"template/sinloaCoffeeBlogPage\";s:4:\"name\";s:23:\"Sinloa Coffee Blog Page\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061222.sinloaCoffeeBlogPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061222.sinloaCoffeeBlogPage-preview.png\";s:15:\"metaDescription\";s:139:\"A blog archive page with a banner-style list from the Sinloa Coffee template set. A great choice for coffee shop, restaurant or bar owners.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5df8b28ba1a7e\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:201;a:13:{s:6:\"bundle\";s:36:\"template/sinloaCoffeeBlogArticlePage\";s:4:\"name\";s:31:\"Sinloa Coffee Blog Article Page\";s:16:\"metaThumbnailUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061289.sinloaCoffeeBlogArticlePage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061289.sinloaCoffeeBlogArticlePage-preview.png\";s:15:\"metaDescription\";s:123:\"A blog article page template from the Sinloa Coffee template set. A great choice for coffee shop, restaurant or bar owners.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5df8b4db35ccc\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:202;a:13:{s:6:\"bundle\";s:32:\"template/sinloaCoffeeAboutUsPage\";s:4:\"name\";s:27:\"Sinloa Coffee About Us Page\";s:16:\"metaThumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061336.sinloaCoffeeAboutUsPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061336.sinloaCoffeeAboutUsPage-preview.png\";s:15:\"metaDescription\";s:117:\"An about page template from the Sinloa Coffee template set. A great choice for coffee shop, restaurant or bar owners.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5df8b535cbdbf\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:203;a:13:{s:6:\"bundle\";s:28:\"template/sinloaCoffee404Page\";s:4:\"name\";s:22:\"Sinloa Coffee 404 Page\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061390.sinloaCoffee404Page-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061390.sinloaCoffee404Page-preview.png\";s:15:\"metaDescription\";s:114:\"A 404 page template from the Sinloa Coffee template set. A great choice for coffee shop, restaurant or bar owners.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5df8b567bb23a\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:204;a:13:{s:6:\"bundle\";s:33:\"template/sinloaCoffeeProductBlock\";s:4:\"name\";s:27:\"Sinloa Coffee Product Block\";s:16:\"metaThumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061453.sinloaCoffeeProductBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061453.sinloaCoffeeProductBlock-preview.png\";s:15:\"metaDescription\";s:59:\"A product block layout from the Sinloa Coffee template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5df9d98720e79\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:205;a:13:{s:6:\"bundle\";s:41:\"template/sinloaCoffeeProductFeaturesBlock\";s:4:\"name\";s:36:\"Sinloa Coffee Product Features Block\";s:16:\"metaThumbnailUrl\";s:107:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061515.sinloaCoffeeProductFeaturesBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061515.sinloaCoffeeProductFeaturesBlock-preview.png\";s:15:\"metaDescription\";s:75:\"Showcase product features with a block from the Sinloa Coffee template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5df9da4ed611e\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:206;a:13:{s:6:\"bundle\";s:38:\"template/sinloaCoffeeCallToActionBlock\";s:4:\"name\";s:34:\"Sinloa Coffee Call to Action Block\";s:16:\"metaThumbnailUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061588.sinloaCoffeeCallToActionBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061588.sinloaCoffeeCallToActionBlock-preview.png\";s:15:\"metaDescription\";s:67:\"A call to action block layout from the Sinloa Coffee template set. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5df9daad69b58\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:207;a:13:{s:6:\"bundle\";s:30:\"template/sinloaCoffeeHeroBlock\";s:4:\"name\";s:24:\"Sinloa Coffee Hero Block\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061634.sinloaCoffeeHeroBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061634.sinloaCoffeeHeroBlock-preview.png\";s:15:\"metaDescription\";s:57:\"A hero section block from the Sinloa Coffee template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5df9dbe53347e\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:208;a:13:{s:6:\"bundle\";s:39:\"template/sinloaCoffeeProductBannerBlock\";s:4:\"name\";s:34:\"Sinloa Coffee Product Banner Block\";s:16:\"metaThumbnailUrl\";s:105:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061686.sinloaCoffeeProductBannerBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061686.sinloaCoffeeProductBannerBlock-preview.png\";s:15:\"metaDescription\";s:59:\"A product banner block from the Sinloa Coffee template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5df9dc7d54993\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:209;a:13:{s:6:\"bundle\";s:33:\"template/sinloaCoffeeArticleBlock\";s:4:\"name\";s:27:\"Sinloa Coffee Article Block\";s:16:\"metaThumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061738.sinloaCoffeeArticleBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061738.sinloaCoffeeArticleBlock-preview.png\";s:15:\"metaDescription\";s:64:\"An article block for a blog from the Sinloa Coffee template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5df9deda632e4\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:210;a:13:{s:6:\"bundle\";s:38:\"template/sinloaCoffeeTestimonialsBlock\";s:4:\"name\";s:32:\"Sinloa Coffee Testimonials Block\";s:16:\"metaThumbnailUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061796.sinloaCoffeeTestimonialsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061796.sinloaCoffeeTestimonialsBlock-preview.png\";s:15:\"metaDescription\";s:90:\"A testimonials block to showcase reviews and feedback from the Sinloa Coffee template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5df9df53d428d\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:211;a:13:{s:6:\"bundle\";s:33:\"template/sinloaCoffeeContactBlock\";s:4:\"name\";s:27:\"Sinloa Coffee Contact Block\";s:16:\"metaThumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061856.sinloaCoffeeContactBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061856.sinloaCoffeeContactBlock-preview.png\";s:15:\"metaDescription\";s:92:\"A contact block layout from the Sinloa Coffee template set. Includes a simple contact form. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5df9e1db7e1e2\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:212;a:13:{s:6:\"bundle\";s:37:\"template/sinloaCoffeeProductHeroBlock\";s:4:\"name\";s:32:\"Sinloa Coffee Product Hero Block\";s:16:\"metaThumbnailUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061908.sinloaCoffeeProductHeroBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1578061908.sinloaCoffeeProductHeroBlock-preview.png\";s:15:\"metaDescription\";s:78:\"A hero section that showcases one product from the Sinloa Coffee template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5df9e2e597f76\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:213;a:13:{s:6:\"bundle\";s:22:\"template/hWLargeHeader\";s:4:\"name\";s:16:\"HW Large Header \";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394473.hWLargeHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394473.hWLargeHeader-preview.png\";s:15:\"metaDescription\";s:154:\"A large header for health, wellness, medical and other services from the HW template set. Includes a logo, menu, and a hero section with a call to action.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:13:\"5e32e76f76872\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:214;a:13:{s:6:\"bundle\";s:21:\"template/hWDarkFooter\";s:4:\"name\";s:14:\"HW Dark Footer\";s:16:\"metaThumbnailUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394561.hWDarkFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:85:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394561.hWDarkFooter-preview.png\";s:15:\"metaDescription\";s:122:\"A dark footer for health, wellness, medical and other services from the HW template set. Includes location, logo and menu.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:13:\"5e32e8017e3f0\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:215;a:13:{s:6:\"bundle\";s:24:\"template/hWBlogListBlock\";s:4:\"name\";s:18:\"HW Blog List Block\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394625.hWBlogListBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394625.hWBlogListBlock-preview.png\";s:15:\"metaDescription\";s:78:\"An archive type list of blog articles from the Health & Wellness template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5e31cf43e0726\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:216;a:13:{s:6:\"bundle\";s:26:\"template/hWTeamMemberBlock\";s:4:\"name\";s:20:\"HW Team Member Block\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394676.hWTeamMemberBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394676.hWTeamMemberBlock-preview.png\";s:15:\"metaDescription\";s:60:\"A team member block from the Health & Wellness template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5e31cd4076512\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:217;a:13:{s:6:\"bundle\";s:26:\"template/hWMaintenancePage\";s:4:\"name\";s:19:\"HW Maintenance Page\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394747.hWMaintenancePage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394747.hWMaintenancePage-preview.png\";s:15:\"metaDescription\";s:93:\"A maintenance page for health, wellness, medical and other services from the HW template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5e31b6c594323\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:218;a:13:{s:6:\"bundle\";s:18:\"template/hW404Page\";s:4:\"name\";s:11:\"HW 404 Page\";s:16:\"metaThumbnailUrl\";s:84:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394795.hW404Page-thumbnail.png\";s:14:\"metaPreviewUrl\";s:82:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394795.hW404Page-preview.png\";s:15:\"metaDescription\";s:120:\"A 404 page for health, wellness, medical and other services from the HW template set.the Health & Wellness template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5e3168e4a1b73\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:219;a:13:{s:6:\"bundle\";s:20:\"template/hWAboutPage\";s:4:\"name\";s:13:\"HW About Page\";s:16:\"metaThumbnailUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394841.hWAboutPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:84:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394841.hWAboutPage-preview.png\";s:15:\"metaDescription\";s:88:\"An about page for health, wellness, medical and other services from the HW template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5e3168a8d01d1\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:220;a:13:{s:6:\"bundle\";s:22:\"template/hWBlogArticle\";s:4:\"name\";s:15:\"HW Blog Article\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394886.hWBlogArticle-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394886.hWBlogArticle-preview.png\";s:15:\"metaDescription\";s:101:\"A single blog article page for health, wellness, medical and other services from the HW template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5e3168748f92f\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:221;a:13:{s:6:\"bundle\";s:19:\"template/hWBlogPage\";s:4:\"name\";s:12:\"HW Blog Page\";s:16:\"metaThumbnailUrl\";s:85:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394942.hWBlogPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:83:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394942.hWBlogPage-preview.png\";s:15:\"metaDescription\";s:86:\"A blog page for health, wellness, medical and other services from the HW template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5e3168429c85f\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:222;a:13:{s:6:\"bundle\";s:25:\"template/hWComingSoonPage\";s:4:\"name\";s:19:\"HW Coming Soon Page\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394998.hWComingSoonPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580394998.hWComingSoonPage-preview.png\";s:15:\"metaDescription\";s:93:\"A coming soon page for health, wellness, medical and other services from the HW template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5e316819d6548\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:223;a:13:{s:6:\"bundle\";s:22:\"template/hWGalleryPage\";s:4:\"name\";s:15:\"HW Gallery Page\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580395058.hWGalleryPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580395058.hWGalleryPage-preview.png\";s:15:\"metaDescription\";s:89:\"A gallery page for health, wellness, medical and other services from the HW template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5e3167d869e75\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:224;a:13:{s:6:\"bundle\";s:23:\"template/hWServicesPage\";s:4:\"name\";s:16:\"HW Services Page\";s:16:\"metaThumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580395114.hWServicesPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580395114.hWServicesPage-preview.png\";s:15:\"metaDescription\";s:89:\"A page to showcase health, wellness, medical and other services from the HW template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5e31675568cbe\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:225;a:13:{s:6:\"bundle\";s:19:\"template/hWHomepage\";s:4:\"name\";s:11:\"HW Homepage\";s:16:\"metaThumbnailUrl\";s:85:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580395183.hWHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:83:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1580395183.hWHomepage-preview.png\";s:15:\"metaDescription\";s:134:\"A homepage for health, wellness, medical and other services from the HW template set. Includes header, footer, menu and more features.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5e3167b1b4241\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1655885756.hWHomepage-intro-page-image.png\";s:11:\"isPageIntro\";b:1;}i:226;a:13:{s:6:\"bundle\";s:26:\"template/burgerStoryHeader\";s:4:\"name\";s:19:\"Burger Story Header\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584626824.burgerStoryHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584626824.burgerStoryHeader-preview.png\";s:15:\"metaDescription\";s:143:\"A colorful header for a restaurant, diner, cafe, or catering company from the Burger Story template set. Includes a logo, a menu, and a search.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:23:\"5e737c364c7a72.30124138\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:227;a:13:{s:6:\"bundle\";s:31:\"template/burgerStoryWhiteHeader\";s:4:\"name\";s:25:\"Burger Story White Header\";s:16:\"metaThumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584626894.burgerStoryWhiteHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584626894.burgerStoryWhiteHeader-preview.png\";s:15:\"metaDescription\";s:140:\"A white header for a restaurant, diner, cafe, or catering company from the Burger Story template set. Includes a logo, a menu, and a search.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:23:\"5e737c9669ffe0.95091680\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:228;a:13:{s:6:\"bundle\";s:26:\"template/burgerStoryFooter\";s:4:\"name\";s:19:\"Burger Story Footer\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584626980.burgerStoryFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584626980.burgerStoryFooter-preview.png\";s:15:\"metaDescription\";s:139:\"A footer for a restaurant, diner, cafe or catering company from the Burger Story template set. Includes logo and menus divided by sections.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:23:\"5e737ce4a5ce43.11716145\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:229;a:13:{s:6:\"bundle\";s:32:\"template/burgerStoryProductBlock\";s:4:\"name\";s:26:\"Burger Story Product Block\";s:16:\"metaThumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627055.burgerStoryProductBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627055.burgerStoryProductBlock-preview.png\";s:15:\"metaDescription\";s:74:\"A block that displays a single product from the Burger Story template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5e725401c61bd\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:230;a:13:{s:6:\"bundle\";s:37:\"template/burgerStoryTestimonialsBlock\";s:4:\"name\";s:31:\"Burger Story Testimonials Block\";s:16:\"metaThumbnailUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627128.burgerStoryTestimonialsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627128.burgerStoryTestimonialsBlock-preview.png\";s:15:\"metaDescription\";s:67:\"A testimonials section template from the Burger Story template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5e725381e80ff\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:231;a:13:{s:6:\"bundle\";s:34:\"template/burgerStoryMobileAppBlock\";s:4:\"name\";s:29:\"Burger Story Mobile App Block\";s:16:\"metaThumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627197.burgerStoryMobileAppBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627197.burgerStoryMobileAppBlock-preview.png\";s:15:\"metaDescription\";s:153:\"A section for mobile app promotion from the Burger Story template set. Includes a description, phone mockup, links to the App Store or Google Play store.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5e725244d92eb\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:232;a:13:{s:6:\"bundle\";s:29:\"template/burgerStoryMenuBlock\";s:4:\"name\";s:23:\"Burger Story Menu Block\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627275.burgerStoryMenuBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627275.burgerStoryMenuBlock-preview.png\";s:15:\"metaDescription\";s:55:\"A food menu section from the Burger Story template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5e7251fd6523b\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:233;a:13:{s:6:\"bundle\";s:31:\"template/burgerStoryHeroSection\";s:4:\"name\";s:25:\"Burger Story Hero Section\";s:16:\"metaThumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627344.burgerStoryHeroSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627344.burgerStoryHeroSection-preview.png\";s:15:\"metaDescription\";s:73:\"A hero section template with an image from the Burger Story template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:13:\"5e725172b3200\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:234;a:13:{s:6:\"bundle\";s:32:\"template/burgerStorySpecialOffer\";s:4:\"name\";s:26:\"Burger Story Special Offer\";s:16:\"metaThumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627415.burgerStorySpecialOffer-thumbnail.png\";s:14:\"metaPreviewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627415.burgerStorySpecialOffer-preview.png\";s:15:\"metaDescription\";s:118:\"A special offer or discount page for a restaurant, diner, cafe or catering company from the Burger Story template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5e724af297cc1\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:235;a:13:{s:6:\"bundle\";s:29:\"template/burgerStoryAboutPage\";s:4:\"name\";s:23:\"Burger Story About Page\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627471.burgerStoryAboutPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627471.burgerStoryAboutPage-preview.png\";s:15:\"metaDescription\";s:99:\"An about page for a restaurant, diner, cafe or catering company from the Burger Story template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5e724abdcfc61\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:236;a:13:{s:6:\"bundle\";s:28:\"template/burgerStoryMenuPage\";s:4:\"name\";s:22:\"Burger Story Menu Page\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627536.burgerStoryMenuPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627536.burgerStoryMenuPage-preview.png\";s:15:\"metaDescription\";s:123:\"A menu page for a restaurant, diner, cafe or catering company from the Burger Story template set. Includes product blocks. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5e724a7b29b5e\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:237;a:13:{s:6:\"bundle\";s:32:\"template/burgerStoryContactsPage\";s:4:\"name\";s:26:\"Burger Story Contacts Page\";s:16:\"metaThumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627596.burgerStoryContactsPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627596.burgerStoryContactsPage-preview.png\";s:15:\"metaDescription\";s:127:\"A contacts page for a restaurant, diner, cafe or catering company from the Burger Story template set. Includes a contact form. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5e724a4c3590b\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:238;a:13:{s:6:\"bundle\";s:27:\"template/burgerStoryFanPage\";s:4:\"name\";s:21:\"Burger Story Fan Page\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627663.burgerStoryFanPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627663.burgerStoryFanPage-preview.png\";s:15:\"metaDescription\";s:115:\"A testimonial and review page for a restaurant, diner, cafe or catering company from the Burger Story template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5e724a28e752a\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:239;a:13:{s:6:\"bundle\";s:28:\"template/burgerStoryHomepage\";s:4:\"name\";s:21:\"Burger Story Homepage\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627732.burgerStoryHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1584627732.burgerStoryHomepage-preview.png\";s:15:\"metaDescription\";s:96:\"A homepage for a restaurant, diner, cafe or catering company from the Burger Story template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5e7249ffab761\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1655885776.burgerStoryHomepage-intro-page-image.png\";s:11:\"isPageIntro\";b:1;}i:240;a:13:{s:6:\"bundle\";s:21:\"template/shippoHeader\";s:4:\"name\";s:13:\"Shippo Header\";s:16:\"metaThumbnailUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587233404.shippoHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:85:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587233404.shippoHeader-preview.png\";s:15:\"metaDescription\";s:147:\"A header for a business of every size such as manufactory, logistics, insurance and more from the Shippo template set. Includes a logo and a menu. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:23:\"5e9b41f70ae005.85717801\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:241;a:13:{s:6:\"bundle\";s:21:\"template/shippoFooter\";s:4:\"name\";s:13:\"Shippo Footer\";s:16:\"metaThumbnailUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587233471.shippoFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:85:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587233471.shippoFooter-preview.png\";s:15:\"metaDescription\";s:177:\"A footer for a business of every size such as manufactory, logistics, insurance and more from the Shippo template set. Includes logo, social icons and menus divided by sections.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:23:\"5e9b42875882a6.53621874\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:242;a:13:{s:6:\"bundle\";s:28:\"template/shippoBlogPostBlock\";s:4:\"name\";s:22:\"Shippo Blog Post Block\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587233552.shippoBlogPostBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587233552.shippoBlogPostBlock-preview.png\";s:15:\"metaDescription\";s:64:\"An archive type list of blog posts from the Shippo template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5e99d0120e4ec1.60760864\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:243;a:13:{s:6:\"bundle\";s:28:\"template/shippoServicesBlock\";s:4:\"name\";s:21:\"Shippo Services Block\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587233611.shippoServicesBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587233611.shippoServicesBlock-preview.png\";s:15:\"metaDescription\";s:59:\"A section to display services from the Shippo template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5e99cfb2b52588.15110126\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:244;a:13:{s:6:\"bundle\";s:27:\"template/shippoFounderBlock\";s:4:\"name\";s:20:\"Shippo Founder Block\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587233677.shippoFounderBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587233677.shippoFounderBlock-preview.png\";s:15:\"metaDescription\";s:71:\"A founder or team member section template from the Shippo template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5e99cf39bde0a1.86317418\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:245;a:13:{s:6:\"bundle\";s:30:\"template/shippoOurMissionBlock\";s:4:\"name\";s:24:\"Shippo Our Mission Block\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587233736.shippoOurMissionBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587233736.shippoOurMissionBlock-preview.png\";s:15:\"metaDescription\";s:68:\"Our mission, about us section template from the Shippo template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5e99ce6aaf5770.90498062\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:246;a:13:{s:6:\"bundle\";s:23:\"template/shippoFAQBlock\";s:4:\"name\";s:16:\"Shippo FAQ Block\";s:16:\"metaThumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587233791.shippoFAQBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587233791.shippoFAQBlock-preview.png\";s:15:\"metaDescription\";s:81:\"A FAQ (frequently asked questions) section template from the Shippo template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5e99ce2923d1e3.52622608\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:247;a:13:{s:6:\"bundle\";s:25:\"template/shippoStepsBlock\";s:4:\"name\";s:18:\"Shippo Steps Block\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587233848.shippoStepsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587233848.shippoStepsBlock-preview.png\";s:15:\"metaDescription\";s:59:\"A section that displays steps from the Shippo template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5e99cdba29dc10.52100903\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:248;a:13:{s:6:\"bundle\";s:29:\"template/shippoDashboardBlock\";s:4:\"name\";s:22:\"Shippo Dashboard Block\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587233923.shippoDashboardBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587233923.shippoDashboardBlock-preview.png\";s:15:\"metaDescription\";s:73:\"A section that shows a screenshot of an app from the Shippo template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5e99cc39c7fd72.49161198\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:249;a:13:{s:6:\"bundle\";s:35:\"template/shippoServicesTeaserBlocks\";s:4:\"name\";s:29:\"Shippo Services Teaser Blocks\";s:16:\"metaThumbnailUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587234006.shippoServicesTeaserBlocks-thumbnail.png\";s:14:\"metaPreviewUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587234006.shippoServicesTeaserBlocks-preview.png\";s:15:\"metaDescription\";s:60:\"A block that displays services from the Shippo template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5e99cb709c1e58.49670793\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:250;a:13:{s:6:\"bundle\";s:24:\"template/shippoHeroBlock\";s:4:\"name\";s:17:\"Shippo Hero Block\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587234120.shippoHeroBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587234120.shippoHeroBlock-preview.png\";s:15:\"metaDescription\";s:94:\"A hero section from the Shippo template set. Includes a star rating, testimonial and an image.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5e99ca8c3b3a15.81046621\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:251;a:13:{s:6:\"bundle\";s:27:\"template/shippoServicesPage\";s:4:\"name\";s:20:\"Shippo Services Page\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587234229.shippoServicesPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587234229.shippoServicesPage-preview.png\";s:15:\"metaDescription\";s:125:\"A service page for a business of every size such as manufactory, logistics, insurance and more from the Shippo template set. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5e99926474cf83.33243679\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:252;a:13:{s:6:\"bundle\";s:29:\"template/shippoOurMissionPage\";s:4:\"name\";s:23:\"Shippo Our Mission Page\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587234344.shippoOurMissionPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587234344.shippoOurMissionPage-preview.png\";s:15:\"metaDescription\";s:124:\"An about page for a business of every size such as manufactory, logistics, insurance and more from the Shippo template set. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5e99923254d8f8.85677092\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:253;a:13:{s:6:\"bundle\";s:28:\"template/shippoInsurancePage\";s:4:\"name\";s:21:\"Shippo Insurance Page\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587234393.shippoInsurancePage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587234393.shippoInsurancePage-preview.png\";s:15:\"metaDescription\";s:128:\"An insurance page for a business of every size such as manufactory, logistics, insurance and more from the Shippo template set. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5e999215e91337.52745227\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:254;a:13:{s:6:\"bundle\";s:27:\"template/shippoContactsPage\";s:4:\"name\";s:20:\"Shippo Contacts Page\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587234447.shippoContactsPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587234447.shippoContactsPage-preview.png\";s:15:\"metaDescription\";s:174:\"A contacts page for a business of every size such as manufactory, logistics, insurance and more from the Shippo template set. Includes a simple contact form and contact info.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5e9991f66ad230.78514851\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:255;a:13:{s:6:\"bundle\";s:30:\"template/shippoBlogArchivePage\";s:4:\"name\";s:24:\"Shippo Blog Archive Page\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587234507.shippoBlogArchivePage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587234507.shippoBlogArchivePage-preview.png\";s:15:\"metaDescription\";s:129:\"A blog archive page for a business of every size such as manufactory, logistics, insurance and more from the Shippo template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5e9991ca47d3d4.91829233\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:256;a:13:{s:6:\"bundle\";s:30:\"template/shippoBlogArticlePage\";s:4:\"name\";s:24:\"Shippo Blog Article Page\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587234551.shippoBlogArticlePage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587234551.shippoBlogArticlePage-preview.png\";s:15:\"metaDescription\";s:129:\"A blog article page for a business of every size such as manufactory, logistics, insurance and more from the Shippo template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5e99919b393a17.05380715\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:257;a:13:{s:6:\"bundle\";s:23:\"template/shippoHomepage\";s:4:\"name\";s:15:\"Shippo Homepage\";s:16:\"metaThumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587234603.shippoHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1587234603.shippoHomepage-preview.png\";s:15:\"metaDescription\";s:177:\"A homepage for a business of every size such as manufactory, logistics, insurance and more from the Shippo template set. Includes header, footer, menu, contact section and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5e99915faa79b7.68995477\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:258;a:13:{s:6:\"bundle\";s:24:\"template/flowerallHeader\";s:4:\"name\";s:16:\"Flowerall Header\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589461695.flowerallHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589461695.flowerallHeader-preview.png\";s:15:\"metaDescription\";s:109:\"A header for flower delivery and other services from the Flowerall template set. Includes a logo and a menu. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:23:\"5ebd427e2948a9.61727957\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:259;a:13:{s:6:\"bundle\";s:24:\"template/flowerallFooter\";s:4:\"name\";s:16:\"Flowerall Footer\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589461759.flowerallFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589461759.flowerallFooter-preview.png\";s:15:\"metaDescription\";s:124:\"A footer for flower delivery and other services from the Flowerall template set. Includes menu, logo and social information.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:23:\"5ebd42d3da8828.23887110\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:260;a:13:{s:6:\"bundle\";s:30:\"template/flowerallProductBlock\";s:4:\"name\";s:23:\"Flowerall Product Block\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589461838.flowerallProductBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589461838.flowerallProductBlock-preview.png\";s:15:\"metaDescription\";s:63:\"A block that displays products from the Flowerall template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5ebd2b2a3c8b14.77564891\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:261;a:13:{s:6:\"bundle\";s:31:\"template/flowerallContactsBlock\";s:4:\"name\";s:24:\"Flowerall Contacts Block\";s:16:\"metaThumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589461891.flowerallContactsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589461891.flowerallContactsBlock-preview.png\";s:15:\"metaDescription\";s:85:\"A contact information block from the Flowerall template set. Includes a contact form.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5ebd2acadcc7b0.13861488\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:262;a:13:{s:6:\"bundle\";s:34:\"template/flowerallProductViewBlock\";s:4:\"name\";s:28:\"Flowerall Product View Block\";s:16:\"metaThumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589461944.flowerallProductViewBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589461944.flowerallProductViewBlock-preview.png\";s:15:\"metaDescription\";s:114:\"A template from the Flowerall template set that displays a product with spots for multiple images of the prooduct.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5ebd2a72b44245.62797535\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:263;a:13:{s:6:\"bundle\";s:30:\"template/flowerallFeatureBlock\";s:4:\"name\";s:23:\"Flowerall Feature Block\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462009.flowerallFeatureBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462009.flowerallFeatureBlock-preview.png\";s:15:\"metaDescription\";s:79:\"A template from the Flowerall template set that displays features of a product.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5ebd296b2bc938.17554905\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:264;a:13:{s:6:\"bundle\";s:29:\"template/flowerallBannerBlock\";s:4:\"name\";s:22:\"Flowerall Banner Block\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462050.flowerallBannerBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462050.flowerallBannerBlock-preview.png\";s:15:\"metaDescription\";s:56:\"A banner block template from the Flowerall template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5ebd29154410b0.41005045\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:265;a:13:{s:6:\"bundle\";s:38:\"template/flowerallProductShowcaseBlock\";s:4:\"name\";s:32:\"Flowerall Product Showcase Block\";s:16:\"metaThumbnailUrl\";s:104:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462104.flowerallProductShowcaseBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462104.flowerallProductShowcaseBlock-preview.png\";s:15:\"metaDescription\";s:103:\"A block from the Flowerall template set that showcases multiple products with images and descriptions. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5ebd2878775741.38086679\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:266;a:13:{s:6:\"bundle\";s:25:\"template/flowerallAboutUs\";s:4:\"name\";s:18:\"Flowerall About Us\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462154.flowerallAboutUs-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462154.flowerallAboutUs-preview.png\";s:15:\"metaDescription\";s:85:\"An about page for flower delivery and other services from the Flowerall template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5ebc490ede56c7.79201780\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:267;a:13:{s:6:\"bundle\";s:29:\"template/flowerallBlogArticle\";s:4:\"name\";s:22:\"Flowerall Blog Article\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462205.flowerallBlogArticle-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462205.flowerallBlogArticle-preview.png\";s:15:\"metaDescription\";s:91:\"A blog article page for flower delivery and other services from the Flowerall template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5ebc48d2c314e3.98177853\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:268;a:13:{s:6:\"bundle\";s:29:\"template/flowerallBlogArchive\";s:4:\"name\";s:22:\"Flowerall Blog Archive\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462272.flowerallBlogArchive-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462272.flowerallBlogArchive-preview.png\";s:15:\"metaDescription\";s:91:\"A blog archive page for flower delivery and other services from the Flowerall template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5ebc4860b3ac51.42293681\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:269;a:13:{s:6:\"bundle\";s:26:\"template/flowerallContacts\";s:4:\"name\";s:18:\"Flowerall Contacts\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462326.flowerallContacts-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462326.flowerallContacts-preview.png\";s:15:\"metaDescription\";s:159:\"A contacts page template for flower delivery and other services from the Flowerall template set. Includes a simple contact form, Google Maps element and more. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5ebc47b937d7b3.71304515\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:270;a:13:{s:6:\"bundle\";s:32:\"template/flowerallProductCatalog\";s:4:\"name\";s:25:\"Flowerall Product Catalog\";s:16:\"metaThumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462402.flowerallProductCatalog-thumbnail.png\";s:14:\"metaPreviewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462402.flowerallProductCatalog-preview.png\";s:15:\"metaDescription\";s:106:\"A page to showcase product catalog for flower delivery and other services from the Flowerall template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5ebc4762649c78.81826231\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:271;a:13:{s:6:\"bundle\";s:31:\"template/flowerallSingleProduct\";s:4:\"name\";s:24:\"Flowerall Single Product\";s:16:\"metaThumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462444.flowerallSingleProduct-thumbnail.png\";s:14:\"metaPreviewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462444.flowerallSingleProduct-preview.png\";s:15:\"metaDescription\";s:107:\"A page to showcase a single product for flower delivery and other services from the Flowerall template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5ebc46f7d48f91.28121382\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:272;a:13:{s:6:\"bundle\";s:26:\"template/flowerallHomepage\";s:4:\"name\";s:18:\"Flowerall Homepage\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462492.flowerallHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1589462492.flowerallHomepage-preview.png\";s:15:\"metaDescription\";s:157:\"A homepage for flower delivery and other services from the Flowerall template set. Includes menu, header and footer, pricing table, contact section and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5ebc46a8c87be7.57786051\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1655885818.flowerallHomepage-intro-page-image.png\";s:11:\"isPageIntro\";b:1;}i:273;a:13:{s:6:\"bundle\";s:20:\"template/belleHeader\";s:4:\"name\";s:12:\"Belle Header\";s:16:\"metaThumbnailUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591620567.belleHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:84:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591620567.belleHeader-preview.png\";s:15:\"metaDescription\";s:108:\"A header for beauty treatment and cosmetic industry from the Belle template set. Includes a logo and a menu.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:23:\"5ede339d7d0c41.51545011\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:274;a:13:{s:6:\"bundle\";s:20:\"template/belleFooter\";s:4:\"name\";s:12:\"Belle Footer\";s:16:\"metaThumbnailUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591620619.belleFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:84:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591620619.belleFooter-preview.png\";s:15:\"metaDescription\";s:118:\"A footer for beauty treatment and cosmetic industry from the Belle template set. Includes logo, menu and social icons.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:23:\"5ede33ee1b43e7.33926652\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:275;a:13:{s:6:\"bundle\";s:30:\"template/belleTeamMembersBlock\";s:4:\"name\";s:24:\"Belle Team Members Block\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591620761.belleTeamMembersBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591620761.belleTeamMembersBlock-preview.png\";s:15:\"metaDescription\";s:46:\"Team member block from the Belle template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5ed9faf3b2c4b7.41905879\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:276;a:13:{s:6:\"bundle\";s:26:\"template/belleContactBlock\";s:4:\"name\";s:19:\"Belle Contact Block\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591620826.belleContactBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591620826.belleContactBlock-preview.png\";s:15:\"metaDescription\";s:93:\"A contact block from the Belle template set. Includes contact information and a contact form.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5ed9f9e8d79642.24674830\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:277;a:13:{s:6:\"bundle\";s:30:\"template/belleBlogArticleBlock\";s:4:\"name\";s:24:\"Belle Blog Article Block\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591620881.belleBlogArticleBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591620881.belleBlogArticleBlock-preview.png\";s:15:\"metaDescription\";s:48:\"A blog post section from the Belle template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5ed9f74a064201.36436288\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:278;a:13:{s:6:\"bundle\";s:30:\"template/belleTestimonialBlock\";s:4:\"name\";s:23:\"Belle Testimonial Block\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591620946.belleTestimonialBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591620946.belleTestimonialBlock-preview.png\";s:15:\"metaDescription\";s:113:\"A testimonial block with a Star Ranking element for rating the business or services. From the Belle template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5ed9f6886d84d7.23167364\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:279;a:13:{s:6:\"bundle\";s:23:\"template/belleHeroBlock\";s:4:\"name\";s:16:\"Belle Hero Block\";s:16:\"metaThumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591620996.belleHeroBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591620996.belleHeroBlock-preview.png\";s:15:\"metaDescription\";s:88:\"A hero section block template with a call to action button. From the Belle template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5ed9f643408a83.38574037\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:280;a:13:{s:6:\"bundle\";s:33:\"template/belleProductFeatureBlock\";s:4:\"name\";s:27:\"Belle Product Feature Block\";s:16:\"metaThumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591621060.belleProductFeatureBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591621060.belleProductFeatureBlock-preview.png\";s:15:\"metaDescription\";s:61:\"A product feature block template from the Belle template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5ed9f5ed77bab1.20770337\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:281;a:13:{s:6:\"bundle\";s:37:\"template/belleFeatureDescriptionBlock\";s:4:\"name\";s:31:\"Belle Feature Description Block\";s:16:\"metaThumbnailUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591621113.belleFeatureDescriptionBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591621113.belleFeatureDescriptionBlock-preview.png\";s:15:\"metaDescription\";s:86:\"A section for products, services, or feature descriptions from the Belle template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5ed9f54b207963.27150731\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:282;a:13:{s:6:\"bundle\";s:22:\"template/belleBlogPage\";s:4:\"name\";s:15:\"Belle Blog Page\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591621228.belleBlogPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591621228.belleBlogPage-preview.png\";s:15:\"metaDescription\";s:83:\"A blog page for beauty treatment and cosmetic industry from the Belle template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5ed96fc8376c51.81999188\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:283;a:13:{s:6:\"bundle\";s:22:\"template/belleHomepage\";s:4:\"name\";s:14:\"Belle Homepage\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591621284.belleHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591621284.belleHomepage-preview.png\";s:15:\"metaDescription\";s:151:\"A homepage for beauty treatment and cosmetic industry from the Belle template set. Includes header and footer, testimonials, product showcase and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5ed96005b2cd32.87488539\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1655885836.belleHomepage-intro-page-image.png\";s:11:\"isPageIntro\";b:1;}i:284;a:13:{s:6:\"bundle\";s:26:\"template/belleContactsPage\";s:4:\"name\";s:19:\"Belle Contacts Page\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591621347.belleContactsPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591621347.belleContactsPage-preview.png\";s:15:\"metaDescription\";s:119:\"A contacts page for beauty treatment and cosmetic industry from the Belle template set. Includes a simple contact form.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5ed95f69b31685.25383298\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:285;a:13:{s:6:\"bundle\";s:25:\"template/belleProductPage\";s:4:\"name\";s:18:\"Belle Product Page\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591621408.belleProductPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591621408.belleProductPage-preview.png\";s:15:\"metaDescription\";s:87:\"A product page for beauty treatment and cosmetic industry from the Belle template set. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5ed95f132d0ac9.40720886\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:286;a:13:{s:6:\"bundle\";s:23:\"template/belleAboutPage\";s:4:\"name\";s:16:\"Belle About Page\";s:16:\"metaThumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591621460.belleAboutPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1591621460.belleAboutPage-preview.png\";s:15:\"metaDescription\";s:86:\"An about page for beauty treatment and cosmetic industry from the Belle template set. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5ed95eb115cdd3.97758003\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:287;a:13:{s:6:\"bundle\";s:22:\"template/booleanHeader\";s:4:\"name\";s:14:\"Boolean Header\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600075945.booleanHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600075945.booleanHeader-preview.png\";s:15:\"metaDescription\";s:124:\"A homepage from the Boolean template set. Perfect for finance, consulting, business, accounting. Includes a logo and a menu.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:23:\"5f5f387c9ce832.10629766\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:288;a:13:{s:6:\"bundle\";s:27:\"template/booleanLargeHeader\";s:4:\"name\";s:20:\"Boolean Large Header\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076017.booleanLargeHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076017.booleanLargeHeader-preview.png\";s:15:\"metaDescription\";s:165:\"A large header from the Boolean template set. Perfect for finance, consulting, business, accounting. Includes a logo, menu, and a hero section with a call to action.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:23:\"5f5f38bb4aabd6.25382101\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:289;a:13:{s:6:\"bundle\";s:22:\"template/booleanFooter\";s:4:\"name\";s:14:\"Boolean Footer\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076094.booleanFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076094.booleanFooter-preview.png\";s:15:\"metaDescription\";s:131:\"A footer from the Boolean template set. Perfect for finance, consulting, business, accounting. Includes menus divided by sections. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:23:\"5f5f3908267835.67299116\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:290;a:13:{s:6:\"bundle\";s:32:\"template/booleanCompanyHighlight\";s:4:\"name\";s:25:\"Boolean Company Highlight\";s:16:\"metaThumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076228.booleanCompanyHighlight-thumbnail.png\";s:14:\"metaPreviewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076228.booleanCompanyHighlight-preview.png\";s:15:\"metaDescription\";s:62:\"Company data highlighting block from the Boolean template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f5770bf830e38.84826709\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:291;a:13:{s:6:\"bundle\";s:29:\"template/booleanContactsBlock\";s:4:\"name\";s:22:\"Boolean Contacts Block\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076307.booleanContactsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076307.booleanContactsBlock-preview.png\";s:15:\"metaDescription\";s:72:\"A contact block with implemented contact from the Boolean template set. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f5765862cd589.25502633\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:292;a:13:{s:6:\"bundle\";s:27:\"template/booleanAppFeatures\";s:4:\"name\";s:20:\"Boolean App Features\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076426.booleanAppFeatures-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076426.booleanAppFeatures-preview.png\";s:15:\"metaDescription\";s:56:\"A product\'s feature block from the Boolean template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f57619f818e69.71004764\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:293;a:13:{s:6:\"bundle\";s:28:\"template/booleanAppHighlight\";s:4:\"name\";s:21:\"Boolean App Highlight\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076500.booleanAppHighlight-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076500.booleanAppHighlight-preview.png\";s:15:\"metaDescription\";s:69:\"A product or a service highlight block from the Boolean template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f575fccb1c3a2.57370319\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:294;a:13:{s:6:\"bundle\";s:29:\"template/booleanFeaturesBlock\";s:4:\"name\";s:22:\"Boolean Features Block\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076643.booleanFeaturesBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076643.booleanFeaturesBlock-preview.png\";s:15:\"metaDescription\";s:59:\"A section for a feature list from the Boolean template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f575e6fe84f10.69264291\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:295;a:13:{s:6:\"bundle\";s:32:\"template/booleanDescriptionBlock\";s:4:\"name\";s:25:\"Boolean Description Block\";s:16:\"metaThumbnailUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076783.booleanDescriptionBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076783.booleanDescriptionBlock-preview.png\";s:15:\"metaDescription\";s:50:\"A description block from the Boolean template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f575c02d42511.67710825\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:296;a:13:{s:6:\"bundle\";s:37:\"template/booleanFeatureHighlightBlock\";s:4:\"name\";s:31:\"Boolean Feature Highlight Block\";s:16:\"metaThumbnailUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076879.booleanFeatureHighlightBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076879.booleanFeatureHighlightBlock-preview.png\";s:15:\"metaDescription\";s:56:\"A feature highlight block from the Boolean template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f575adcc436b1.18908863\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:297;a:13:{s:6:\"bundle\";s:24:\"template/booleanFAQBlock\";s:4:\"name\";s:17:\"Boolean FAQ Block\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076962.booleanFAQBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600076962.booleanFAQBlock-preview.png\";s:15:\"metaDescription\";s:67:\"A frequently asked questions section from the Boolean template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f5758ff3acea1.91871799\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:298;a:13:{s:6:\"bundle\";s:28:\"template/booleanPricingTable\";s:4:\"name\";s:21:\"Boolean Pricing Table\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600077073.booleanPricingTable-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600077073.booleanPricingTable-preview.png\";s:15:\"metaDescription\";s:91:\"A price table block with features and call to action buttons from the Boolean template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f575564782ff5.46819736\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:299;a:13:{s:6:\"bundle\";s:29:\"template/booleanBlogPostBlock\";s:4:\"name\";s:23:\"Boolean Blog Post Block\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600077194.booleanBlogPostBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600077194.booleanBlogPostBlock-preview.png\";s:15:\"metaDescription\";s:56:\"An article block template from the Boolean template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f57457cccf2d3.97146267\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:300;a:13:{s:6:\"bundle\";s:23:\"template/booleanPricing\";s:4:\"name\";s:15:\"Boolean Pricing\";s:16:\"metaThumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600077257.booleanPricing-thumbnail.png\";s:14:\"metaPreviewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600077257.booleanPricing-preview.png\";s:15:\"metaDescription\";s:45:\"A pricing page from the Boolean template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f560f69c26183.47072368\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:301;a:13:{s:6:\"bundle\";s:30:\"template/booleanHowItWorksPage\";s:4:\"name\";s:25:\"Boolean How It Works Page\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600077315.booleanHowItWorksPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600077315.booleanHowItWorksPage-preview.png\";s:15:\"metaDescription\";s:50:\"A how it works page from the Boolean template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f560f32bd70d7.23830010\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:302;a:13:{s:6:\"bundle\";s:24:\"template/booleanHomepage\";s:4:\"name\";s:16:\"Boolean Homepage\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600077368.booleanHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600077368.booleanHomepage-preview.png\";s:15:\"metaDescription\";s:159:\"A homepage from the Boolean template set. Perfect for finance, consulting, business, accounting. Includes header and footer, features, star ranking, and more. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f560b64503a68.76767987\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1655885880.booleanHomepage-intro-page-image.png\";s:11:\"isPageIntro\";b:1;}i:303;a:13:{s:6:\"bundle\";s:24:\"template/booleanContacts\";s:4:\"name\";s:16:\"Boolean Contacts\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600077465.booleanContacts-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600077465.booleanContacts-preview.png\";s:15:\"metaDescription\";s:126:\"A contacts page from the Boolean template set. Perfect for finance, consulting, business, accounting. Includes a contact form.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f560b2c87e297.93798073\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:304;a:13:{s:6:\"bundle\";s:24:\"template/booleanBlogPage\";s:4:\"name\";s:17:\"Boolean Blog Page\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600077526.booleanBlogPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600077526.booleanBlogPage-preview.png\";s:15:\"metaDescription\";s:106:\"A blog archive page from the Boolean template set. Perfect for finance, consulting, business, accounting. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f560a80b99c47.36165667\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:305;a:13:{s:6:\"bundle\";s:25:\"template/booleanAboutPage\";s:4:\"name\";s:18:\"Boolean About Page\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600077581.booleanAboutPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600077581.booleanAboutPage-preview.png\";s:15:\"metaDescription\";s:100:\"An about page from the Boolean template set. Perfect for finance, consulting, business, accounting. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f560a5d0cf5d9.04495158\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:306;a:13:{s:6:\"bundle\";s:24:\"template/confetit404Page\";s:4:\"name\";s:17:\"Confetit 404 Page\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775254.confetit404Page-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775254.confetit404Page-preview.png\";s:15:\"metaDescription\";s:69:\"A 404 page for conferences and events from the Confetit template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f6980be3f9ad3.34008304\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:307;a:13:{s:6:\"bundle\";s:31:\"template/confetitComingSoonPage\";s:4:\"name\";s:25:\"Confetit Coming Soon Page\";s:16:\"metaThumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775307.confetitComingSoonPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775307.confetitComingSoonPage-preview.png\";s:15:\"metaDescription\";s:105:\"A coming soon page for conferences and events from the Confetit template set. Includes a countdown timer.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f6980d708ee90.77393175\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:308;a:13:{s:6:\"bundle\";s:28:\"template/confetitLandingPage\";s:4:\"name\";s:21:\"Confetit Landing Page\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775369.confetitLandingPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775369.confetitLandingPage-preview.png\";s:15:\"metaDescription\";s:134:\"A landing page for conferences and events from the Confetit template set. Includes a timeline, speakers, contact information and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f698139c1f1b7.50154352\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1655885918.confetitLandingPage-intro-page-image.png\";s:11:\"isPageIntro\";b:1;}i:309;a:13:{s:6:\"bundle\";s:23:\"template/confetitFooter\";s:4:\"name\";s:15:\"Confetit Footer\";s:16:\"metaThumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775428.confetitFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775428.confetitFooter-preview.png\";s:15:\"metaDescription\";s:111:\"A footer for conferences and events from the Confetit template set. Includes the date, location, menu and logo.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:23:\"5f69e4da59c808.52897976\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:310;a:13:{s:6:\"bundle\";s:28:\"template/confetitHeroSection\";s:4:\"name\";s:21:\"Confetit Hero Section\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775498.confetitHeroSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775498.confetitHeroSection-preview.png\";s:15:\"metaDescription\";s:107:\"A hero section block template with a header/menu and call to action button. From the Confetit template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f69a0d93dd0c3.59532333\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:311;a:13:{s:6:\"bundle\";s:33:\"template/confetitFeatureHighlight\";s:4:\"name\";s:26:\"Confetit Feature Highlight\";s:16:\"metaThumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775609.confetitFeatureHighlight-thumbnail.png\";s:14:\"metaPreviewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775609.confetitFeatureHighlight-preview.png\";s:15:\"metaDescription\";s:66:\"A feature highlight block template from the Confetit template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f69a17f1f1fb3.09565012\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:312;a:13:{s:6:\"bundle\";s:30:\"template/confetitContactsBlock\";s:4:\"name\";s:23:\"Confetit Contacts Block\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775661.confetitContactsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775661.confetitContactsBlock-preview.png\";s:15:\"metaDescription\";s:56:\"A contact block template from the Confetit template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f69a1fd9373e5.65654194\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:313;a:13:{s:6:\"bundle\";s:30:\"template/confetitSpeakersBlock\";s:4:\"name\";s:23:\"Confetit Speakers Block\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775714.confetitSpeakersBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775714.confetitSpeakersBlock-preview.png\";s:15:\"metaDescription\";s:103:\"A section for speakers, authors, or team members with names and photos. From the Confetit template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f69a27b2884e8.21562497\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:314;a:13:{s:6:\"bundle\";s:34:\"template/confetitTestimonialsBlock\";s:4:\"name\";s:27:\"Confetit Testimonials Block\";s:16:\"metaThumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775805.confetitTestimonialsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775805.confetitTestimonialsBlock-preview.png\";s:15:\"metaDescription\";s:96:\"A section for testimonials with an image and social media icons. From the Confetit template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f69a2fd26a861.83326052\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:315;a:13:{s:6:\"bundle\";s:29:\"template/confetitPricingBlock\";s:4:\"name\";s:22:\"Confetit Pricing Block\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775862.confetitPricingBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1600775862.confetitPricingBlock-preview.png\";s:15:\"metaDescription\";s:94:\"A price table section with features and call to action buttons from the Confetit template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f69a3b4b5ddd3.32207333\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:316;a:13:{s:6:\"bundle\";s:27:\"template/eComComingSoonPage\";s:4:\"name\";s:21:\"eCom Coming Soon Page\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601996567.eComComingSoonPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601996567.eComComingSoonPage-preview.png\";s:15:\"metaDescription\";s:88:\"A coming soon page template for an online store or business site. Includes social icons.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f7c297d3d3109.01714350\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:317;a:13:{s:6:\"bundle\";s:33:\"template/travelBlogComingSoonPage\";s:4:\"name\";s:28:\"Travel Blog Coming Soon Page\";s:16:\"metaThumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601996635.travelBlogComingSoonPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601996635.travelBlogComingSoonPage-preview.png\";s:15:\"metaDescription\";s:103:\"A coming soon page template for a travel blog or tourism agency. Includes a date and a countdown timer.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f7c28d7602f88.44140433\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:318;a:13:{s:6:\"bundle\";s:30:\"template/fitnessComingSoonPage\";s:4:\"name\";s:24:\"Fitness Coming Soon Page\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601996726.fitnessComingSoonPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601996726.fitnessComingSoonPage-preview.png\";s:15:\"metaDescription\";s:131:\"A coming soon page template for a fitness club, yoga studio, or any other sports site. Includes contact button and countdown timer.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f7c287bf02997.76650898\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:319;a:13:{s:6:\"bundle\";s:30:\"template/finTechComingSoonPage\";s:4:\"name\";s:24:\"FinTech Coming Soon Page\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601996793.finTechComingSoonPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601996793.finTechComingSoonPage-preview.png\";s:15:\"metaDescription\";s:63:\"A coming soon page template for fintech, technology, app sites.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f7c2854af73a4.23840473\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:320;a:13:{s:6:\"bundle\";s:37:\"template/eBizConferenceComingSoonPage\";s:4:\"name\";s:32:\"eBiz Conference Coming Soon Page\";s:16:\"metaThumbnailUrl\";s:103:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601996865.eBizConferenceComingSoonPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:101:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601996865.eBizConferenceComingSoonPage-preview.png\";s:15:\"metaDescription\";s:66:\"A coming soon page template for a conference or online event site.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f7c282d873d69.38687661\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:321;a:13:{s:6:\"bundle\";s:27:\"template/dineComingSoonPage\";s:4:\"name\";s:21:\"Dine Coming Soon Page\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601996923.dineComingSoonPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601996923.dineComingSoonPage-preview.png\";s:15:\"metaDescription\";s:60:\"A coming soon page template for a restaurant, cafe, or pub. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f7c2814054db8.48909846\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:322;a:13:{s:6:\"bundle\";s:36:\"template/devConferenceComingSoonPage\";s:4:\"name\";s:31:\"Dev Conference Coming Soon Page\";s:16:\"metaThumbnailUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601996984.devConferenceComingSoonPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601996984.devConferenceComingSoonPage-preview.png\";s:15:\"metaDescription\";s:69:\"A coming soon page template for web development conference or meetup.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f7c27f1a9c905.93368449\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:323;a:13:{s:6:\"bundle\";s:31:\"template/designerComingSoonPage\";s:4:\"name\";s:25:\"Designer Coming Soon Page\";s:16:\"metaThumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601997069.designerComingSoonPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601997069.designerComingSoonPage-preview.png\";s:15:\"metaDescription\";s:58:\"A coming soon page template for designers and freelancers.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f7c27b94f8549.81285686\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:324;a:13:{s:6:\"bundle\";s:29:\"template/artistComingSoonPage\";s:4:\"name\";s:23:\"Artist Coming Soon Page\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601997117.artistComingSoonPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601997117.artistComingSoonPage-preview.png\";s:15:\"metaDescription\";s:104:\"A coming soon page template for artists, designers, photographers and creatives. Includes social icons. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f7c27905fa408.09037470\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:325;a:13:{s:6:\"bundle\";s:26:\"template/appComingSoonPage\";s:4:\"name\";s:20:\"App Coming Soon Page\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601997168.appComingSoonPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1601997168.appComingSoonPage-preview.png\";s:15:\"metaDescription\";s:72:\"A coming soon page template for mobile app, digital product, or startup.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f7c27411fb191.72944204\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:326;a:13:{s:6:\"bundle\";s:29:\"template/kadRoomFoundersBlock\";s:4:\"name\";s:22:\"KadRoom Founders Block\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603723727.kadRoomFoundersBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603723727.kadRoomFoundersBlock-preview.png\";s:15:\"metaDescription\";s:109:\"A block template for founders, authors, or team members with names and photos. From the KadRoom template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f9331a18ea4d2.89104355\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:327;a:13:{s:6:\"bundle\";s:29:\"template/kadRoomFeaturesBlock\";s:4:\"name\";s:22:\"KadRoom Features Block\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603723816.kadRoomFeaturesBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603723816.kadRoomFeaturesBlock-preview.png\";s:15:\"metaDescription\";s:57:\"A block for a feature list from the KadRoom template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f933164337274.31720537\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:328;a:13:{s:6:\"bundle\";s:34:\"template/kadRoomLightContactsBlock\";s:4:\"name\";s:28:\"KadRoom Light Contacts Block\";s:16:\"metaThumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603723930.kadRoomLightContactsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603723930.kadRoomLightContactsBlock-preview.png\";s:15:\"metaDescription\";s:102:\"A contact block with implemented contact form with a white background. From the KadRoom template set. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f9330f9b9cb19.57519167\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:329;a:13:{s:6:\"bundle\";s:29:\"template/kadRoomContactsBlock\";s:4:\"name\";s:22:\"KadRoom Contacts Block\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724023.kadRoomContactsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724023.kadRoomContactsBlock-preview.png\";s:15:\"metaDescription\";s:103:\"A contact block with implemented contact form with an image background. From the KadRoom template set. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f9330bac077d0.45921481\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:330;a:13:{s:6:\"bundle\";s:29:\"template/kadRoomArticlesBlock\";s:4:\"name\";s:22:\"KadRoom Articles Block\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724083.kadRoomArticlesBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724083.kadRoomArticlesBlock-preview.png\";s:15:\"metaDescription\";s:62:\"A section to display blog posts from the KadRoom template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f932fabbee825.76129940\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:331;a:13:{s:6:\"bundle\";s:28:\"template/kadRoomPricingBlock\";s:4:\"name\";s:21:\"KadRoom Pricing Block\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724173.kadRoomPricingBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724173.kadRoomPricingBlock-preview.png\";s:15:\"metaDescription\";s:91:\"A price table block with features and call to action buttons from the KadRoom template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f932f574e50e4.50838068\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:332;a:13:{s:6:\"bundle\";s:33:\"template/kadRoomTestimonialsBlock\";s:4:\"name\";s:26:\"KadRoom Testimonials Block\";s:16:\"metaThumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724266.kadRoomTestimonialsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724266.kadRoomTestimonialsBlock-preview.png\";s:15:\"metaDescription\";s:138:\"A testimonials section for customers\' reviews and a Star Ranking element for rating a business or services. From the KadRoom template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f932e6a151bd7.61488050\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:333;a:13:{s:6:\"bundle\";s:26:\"template/kadRoomAboutBlock\";s:4:\"name\";s:19:\"KadRoom About Block\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724354.kadRoomAboutBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724354.kadRoomAboutBlock-preview.png\";s:15:\"metaDescription\";s:157:\"About us section with a text, image, call to action areas, and founder testimonial to tell clients what the company is about. From the KadRoom template set. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f932d4a4b7382.72981541\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:334;a:13:{s:6:\"bundle\";s:24:\"template/kadRoomFAQBlock\";s:4:\"name\";s:17:\"KadRoom FAQ Block\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724408.kadRoomFAQBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724408.kadRoomFAQBlock-preview.png\";s:15:\"metaDescription\";s:125:\"A frequently asked questions section with a toggle element to collapse and expand the answers. From the KadRoom template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5f932cdbd1eab9.95730860\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:335;a:13:{s:6:\"bundle\";s:28:\"template/kadRoomBlogArticles\";s:4:\"name\";s:21:\"KadRoom Blog Articles\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724515.kadRoomBlogArticles-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724515.kadRoomBlogArticles-preview.png\";s:15:\"metaDescription\";s:91:\"A blog article page for cleaning, laundry and other services from the KadRoom template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f93274f27fd26.75686728\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:336;a:13:{s:6:\"bundle\";s:23:\"template/kadRoomFAQPage\";s:4:\"name\";s:16:\"KadRoom FAQ Page\";s:16:\"metaThumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724575.kadRoomFAQPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724575.kadRoomFAQPage-preview.png\";s:15:\"metaDescription\";s:133:\"A FAQ (frequently asked questions) page for cleaning, laundry and other services from the KadRoom template set. Includes FAQ toggles.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f932672aa97c4.55637416\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:337;a:13:{s:6:\"bundle\";s:28:\"template/kadRoomContactsPage\";s:4:\"name\";s:21:\"KadRoom Contacts Page\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724624.kadRoomContactsPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724624.kadRoomContactsPage-preview.png\";s:15:\"metaDescription\";s:86:\"A contact page for cleaning, laundry and other services from the KadRoom template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f9325a176ff84.10276292\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:338;a:13:{s:6:\"bundle\";s:27:\"template/kadRoomBlogArchive\";s:4:\"name\";s:20:\"KadRoom Blog Archive\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724685.kadRoomBlogArchive-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724685.kadRoomBlogArchive-preview.png\";s:15:\"metaDescription\";s:91:\"A blog archive page for cleaning, laundry and other services from the KadRoom template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f93254fa5fc55.70433300\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:339;a:13:{s:6:\"bundle\";s:27:\"template/kadRoomPricingPage\";s:4:\"name\";s:20:\"KadRoom Pricing Page\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724750.kadRoomPricingPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724750.kadRoomPricingPage-preview.png\";s:15:\"metaDescription\";s:86:\"A pricing page for cleaning, laundry and other services from the KadRoom template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f9324fb5bf155.20606813\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:340;a:13:{s:6:\"bundle\";s:27:\"template/kadRoomServicePage\";s:4:\"name\";s:20:\"KadRoom Service Page\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724803.kadRoomServicePage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724803.kadRoomServicePage-preview.png\";s:15:\"metaDescription\";s:78:\"A page for cleaning, laundry and other services from the KadRoom template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f93228faed2b9.89313413\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:341;a:13:{s:6:\"bundle\";s:25:\"template/kadRoomAboutPage\";s:4:\"name\";s:18:\"KadRoom About Page\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724888.kadRoomAboutPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724888.kadRoomAboutPage-preview.png\";s:15:\"metaDescription\";s:85:\"An about page for cleaning, laundry and other services from the KadRoom template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f93223f628560.14653398\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:342;a:13:{s:6:\"bundle\";s:24:\"template/kadRoomHomepage\";s:4:\"name\";s:16:\"KadRoom Homepage\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724967.kadRoomHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603724967.kadRoomHomepage-preview.png\";s:15:\"metaDescription\";s:82:\"A homepage for cleaning, laundry and other services from the KadRoom template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5f9322079f56d2.36686668\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:343;a:13:{s:6:\"bundle\";s:22:\"template/kadRoomFooter\";s:4:\"name\";s:14:\"KadRoom Footer\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603725051.kadRoomFooter-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603725051.kadRoomFooter-preview.png\";s:15:\"metaDescription\";s:118:\"A footer for cleaning, laundry and other services from the KadRoom template set. Includes social icons, logo and menu.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubFooter\";s:2:\"id\";s:23:\"5f96e6d609e8a1.45580862\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:344;a:13:{s:6:\"bundle\";s:22:\"template/kadRoomHeader\";s:4:\"name\";s:14:\"KadRoom Header\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603725113.kadRoomHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1603725113.kadRoomHeader-preview.png\";s:15:\"metaDescription\";s:113:\"A header for cleaning, laundry and other services from the KadRoom template set. Includes a menu, logo, and more.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:23:\"5f96e70e6cad46.86162846\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:345;a:13:{s:6:\"bundle\";s:22:\"template/muiJiluHeader\";s:4:\"name\";s:15:\"Mui Jilu Header\";s:16:\"metaThumbnailUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605040954.muiJiluHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605040954.muiJiluHeader-preview.png\";s:15:\"metaDescription\";s:134:\"A header for a homepage or portfolio template of a web designer, creative professional or photographer from the Mui Jilu template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:23:\"5faafae077a009.18267170\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:346;a:13:{s:6:\"bundle\";s:29:\"template/muiJiluContactsBlock\";s:4:\"name\";s:23:\"Mui Jilu Contacts Block\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605041021.muiJiluContactsBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605041021.muiJiluContactsBlock-preview.png\";s:15:\"metaDescription\";s:113:\"A section for contacts: e-mail address, phone number, and links to social media. From the Mui Jilu template set. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5fa94811a9c722.66439137\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:347;a:13:{s:6:\"bundle\";s:30:\"template/muiJiluExpertiseBlock\";s:4:\"name\";s:24:\"Mui Jilu Expertise Block\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605041086.muiJiluExpertiseBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605041086.muiJiluExpertiseBlock-preview.png\";s:15:\"metaDescription\";s:114:\"A section to showcase skills, personal expertise, experience, or curriculum vitae. From the Mui Jilu template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5fa944de71f2e6.41201916\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:348;a:13:{s:6:\"bundle\";s:29:\"template/muiJiluPortfolioItem\";s:4:\"name\";s:23:\"Mui Jilu Portfolio Item\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605041141.muiJiluPortfolioItem-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605041141.muiJiluPortfolioItem-preview.png\";s:15:\"metaDescription\";s:114:\"A section to display portfolio items, categories, and include images from designs. From the Mui Jilu template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5fa9443fb47d47.11279459\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:349;a:13:{s:6:\"bundle\";s:27:\"template/muiJiluHeroSection\";s:4:\"name\";s:21:\"Mui Jilu Hero Section\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605041195.muiJiluHeroSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605041195.muiJiluHeroSection-preview.png\";s:15:\"metaDescription\";s:148:\"A hero section with a title and an image for portfolio, photography site, web designer, and other creative industry. From the Mui Jilu template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5fa944063ac6b5.89111815\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:350;a:13:{s:6:\"bundle\";s:24:\"template/muiJiluShowcase\";s:4:\"name\";s:17:\"Mui Jilu Showcase\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605041254.muiJiluShowcase-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605041254.muiJiluShowcase-preview.png\";s:15:\"metaDescription\";s:121:\"A showcase page with a gallery for a web designer, creative professional, or photographer from the Mui Jilu template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5fa917c8e50d27.94746318\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:351;a:13:{s:6:\"bundle\";s:31:\"template/muiJiluMaintenancePage\";s:4:\"name\";s:25:\"Mui Jilu Maintenance Page\";s:16:\"metaThumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1608114113.muiJiluMaintenancePage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1608114113.muiJiluMaintenancePage-preview.png\";s:15:\"metaDescription\";s:108:\"A maintenance page for a web designer, creative professional or photographer from the Mui Jilu template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5fa917ac322c09.65091119\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:352;a:13:{s:6:\"bundle\";s:24:\"template/muiJiluHomepage\";s:4:\"name\";s:17:\"Mui Jilu Homepage\";s:16:\"metaThumbnailUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605041457.muiJiluHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:88:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605041457.muiJiluHomepage-preview.png\";s:15:\"metaDescription\";s:122:\"A homepage or portfolio template for a web designer, creative professional or photographer from the Mui Jilu template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5fa91788216765.43906838\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:353;a:13:{s:6:\"bundle\";s:28:\"template/muiJiluContactsPage\";s:4:\"name\";s:22:\"Mui Jilu Contacts Page\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605041500.muiJiluContactsPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605041500.muiJiluContactsPage-preview.png\";s:15:\"metaDescription\";s:133:\"A contact page template with a contact form for a web designer, creative professional or photographer from the Mui Jilu template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5fa917671bfa20.56224166\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:354;a:13:{s:6:\"bundle\";s:30:\"template/muiJiluComingSoonPage\";s:4:\"name\";s:25:\"Mui Jilu Coming Soon Page\";s:16:\"metaThumbnailUrl\";s:96:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605041562.muiJiluComingSoonPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605041562.muiJiluComingSoonPage-preview.png\";s:15:\"metaDescription\";s:117:\"A coming soon page template for a web designer, creative professional or photographer from the Mui Jilu template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5fa9174a2bd705.55515736\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:355;a:13:{s:6:\"bundle\";s:23:\"template/muiJilu404Page\";s:4:\"name\";s:17:\"Mui Jilu 404 Page\";s:16:\"metaThumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605041607.muiJilu404Page-thumbnail.png\";s:14:\"metaPreviewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1605041607.muiJilu404Page-preview.png\";s:15:\"metaDescription\";s:100:\"A 404 page for a web designer, creative professional or photographer from the Mui Jilu template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5fa915c61c80b5.75545286\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:356;a:13:{s:6:\"bundle\";s:25:\"template/foodiBlogArticle\";s:4:\"name\";s:18:\"foodi Blog Article\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1606473980.foodiBlogArticle-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1606473980.foodiBlogArticle-preview.png\";s:15:\"metaDescription\";s:131:\"A blog article template for a food blog from the foodi template set. Perfect for cooks, restaurants, cafes, and lifestyle bloggers.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5fbffa165bc914.08772920\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:357;a:13:{s:6:\"bundle\";s:26:\"template/foodiBlogHomepage\";s:4:\"name\";s:19:\"foodi Blog Homepage\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1606474045.foodiBlogHomepage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1606474045.foodiBlogHomepage-preview.png\";s:15:\"metaDescription\";s:127:\"A homepage template for a food blog from the foodi template set. Perfect for cooks, restaurants, cafes, and lifestyle bloggers.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5fbffab2a2aab7.23402526\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:358;a:13:{s:6:\"bundle\";s:29:\"template/foodiMaintenancePage\";s:4:\"name\";s:22:\"foodi Maintenance Page\";s:16:\"metaThumbnailUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1606474563.foodiMaintenancePage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1606474563.foodiMaintenancePage-preview.png\";s:15:\"metaDescription\";s:135:\"A maintenance page template for a food blog from the foodi template set. Perfect for cooks, restaurants, cafes, and lifestyle bloggers.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5fbffb3d121b39.28207288\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:359;a:13:{s:6:\"bundle\";s:28:\"template/foodiComingSoonPage\";s:4:\"name\";s:22:\"foodi Coming Soon Page\";s:16:\"metaThumbnailUrl\";s:94:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1606474608.foodiComingSoonPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1606474608.foodiComingSoonPage-preview.png\";s:15:\"metaDescription\";s:135:\"A coming soon page template for a food blog from the foodi template set. Perfect for cooks, restaurants, cafes, and lifestyle bloggers.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5fbffb6b9c39a6.80995450\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:360;a:13:{s:6:\"bundle\";s:23:\"template/foodiAboutPage\";s:4:\"name\";s:16:\"foodi About Page\";s:16:\"metaThumbnailUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1606474653.foodiAboutPage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1606474653.foodiAboutPage-preview.png\";s:15:\"metaDescription\";s:130:\"An about page template for a food blog from the foodi template set. Perfect for cooks, restaurants, cafes, and lifestyle bloggers.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5fbffbee8fd353.68977995\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:361;a:13:{s:6:\"bundle\";s:21:\"template/foodi404Page\";s:4:\"name\";s:14:\"foodi 404 Page\";s:16:\"metaThumbnailUrl\";s:87:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1606474689.foodi404Page-thumbnail.png\";s:14:\"metaPreviewUrl\";s:85:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1606474689.foodi404Page-preview.png\";s:15:\"metaDescription\";s:127:\"A 404-page template for a food blog from the foodi template set. Perfect for cooks, restaurants, cafes, and lifestyle bloggers.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:23:\"5fbffc55a42500.29749509\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:362;a:13:{s:6:\"bundle\";s:34:\"template/foodiFeaturedArticleBlock\";s:4:\"name\";s:28:\"foodi Featured Article Block\";s:16:\"metaThumbnailUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1606474745.foodiFeaturedArticleBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:98:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1606474745.foodiFeaturedArticleBlock-preview.png\";s:15:\"metaDescription\";s:108:\"A section to feature a blog post title, excerpt, featured image, and an author. From the foodi template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5fbffeb7c983a3.97107498\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:363;a:13:{s:6:\"bundle\";s:27:\"template/foodiArticlesBlock\";s:4:\"name\";s:20:\"foodi Articles Block\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1606474789.foodiArticlesBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1606474789.foodiArticlesBlock-preview.png\";s:15:\"metaDescription\";s:60:\"A section to display blog posts from the foodi template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5fbfff2b385ec2.66627382\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:364;a:13:{s:6:\"bundle\";s:27:\"template/foodiFoundersBlock\";s:4:\"name\";s:20:\"foodi Founders Block\";s:16:\"metaThumbnailUrl\";s:93:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1606474884.foodiFoundersBlock-thumbnail.png\";s:14:\"metaPreviewUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1606474884.foodiFoundersBlock-preview.png\";s:15:\"metaDescription\";s:107:\"A block template for founders, authors, or team members with names and photos. From the foodi template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5fbfff7b453a95.70325409\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:365;a:13:{s:6:\"bundle\";s:20:\"template/pagooHeader\";s:4:\"name\";s:12:\"Pagoo Header\";s:16:\"metaThumbnailUrl\";s:86:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1607451083.pagooHeader-thumbnail.png\";s:14:\"metaPreviewUrl\";s:84:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1607451083.pagooHeader-preview.png\";s:15:\"metaDescription\";s:132:\"A blue background header from the Pagoo template set. Perfect for mobile apps, software companies, etc. Includes a logo and a menu. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:9:\"hubHeader\";s:2:\"id\";s:23:\"5fcfc18e867c25.83765792\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:366;a:13:{s:6:\"bundle\";s:33:\"template/pagooBlogArticlesSection\";s:4:\"name\";s:27:\"Pagoo Blog Articles Section\";s:16:\"metaThumbnailUrl\";s:99:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1607451151.pagooBlogArticlesSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1607451151.pagooBlogArticlesSection-preview.png\";s:15:\"metaDescription\";s:72:\"A section to highlight blog featured posts. From the Pagoo template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5fcf71a798f3a2.97611311\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:367;a:13:{s:6:\"bundle\";s:31:\"template/pagooFeatureHighlights\";s:4:\"name\";s:24:\"Pagoo Feature Highlights\";s:16:\"metaThumbnailUrl\";s:97:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1607451231.pagooFeatureHighlights-thumbnail.png\";s:14:\"metaPreviewUrl\";s:95:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1607451231.pagooFeatureHighlights-preview.png\";s:15:\"metaDescription\";s:86:\"A feature highlight section with an image and description from the Pagoo template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5fcf70ce09a373.44809273\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:368;a:13:{s:6:\"bundle\";s:26:\"template/pagooFeaturesList\";s:4:\"name\";s:19:\"Pagoo Features List\";s:16:\"metaThumbnailUrl\";s:92:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1607451294.pagooFeaturesList-thumbnail.png\";s:14:\"metaPreviewUrl\";s:90:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1607451294.pagooFeaturesList-preview.png\";s:15:\"metaDescription\";s:71:\"A feature list with icons and descriptions from the Pagoo template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5fcf703df0a0d2.58815667\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:369;a:13:{s:6:\"bundle\";s:25:\"template/pagooHeroSection\";s:4:\"name\";s:18:\"Pagoo Hero Section\";s:16:\"metaThumbnailUrl\";s:91:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1607451352.pagooHeroSection-thumbnail.png\";s:14:\"metaPreviewUrl\";s:89:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1607451352.pagooHeroSection-preview.png\";s:15:\"metaDescription\";s:100:\"A hero section with an image and call to action on the color background from the Pagoo template set.\";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:5:\"block\";s:2:\"id\";s:23:\"5fcf6fc3159088.67117594\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}i:370;a:13:{s:6:\"bundle\";s:36:\"template/elifProductCategoryHomePage\";s:4:\"name\";s:30:\"Elif Product Category HomePage\";s:16:\"metaThumbnailUrl\";s:102:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1608122949.elifProductCategoryHomePage-thumbnail.png\";s:14:\"metaPreviewUrl\";s:100:\"https://cdn.hub.visualcomposer.com/vcwb-templates/1608122949.elifProductCategoryHomePage-preview.png\";s:15:\"metaDescription\";s:150:\"A homepage template from the Elif template set. The layout to represent a business or online store by-products or categories in an asynchronous grid. \";s:4:\"type\";s:8:\"template\";s:12:\"templateType\";s:3:\"hub\";s:2:\"id\";s:13:\"5d38a5b00ed71\";s:6:\"update\";b:1;s:13:\"allowDownload\";b:0;s:10:\"bundleType\";a:1:{i:0;s:7:\"premium\";}s:17:\"introPageImageUrl\";s:0:\"\";s:11:\"isPageIntro\";b:0;}}','auto-off'),
(237370,'vcv-hubAction:updatePosts','a:0:{}','auto'),
(237371,'vcv-bundleUpdateRequired','1','auto'),
(237375,'vcv-settings-gutenberg-editor-enabled','1','auto'),
(237378,'vcv-system:migration:databaseMigration-45.15.0','1','auto'),
(237379,'vcv-system:migration:enabledPostTypesMigrationv37','1','auto'),
(237380,'vcv-plugin-activation','1758672458','auto'),
(237381,'vcv-system:migration:freeMigrationV34','1','auto'),
(237382,'vcv-system:migration:mergeArchivesLayoutsMigrationv40','1','auto'),
(237383,'vcv-system:migration:CustomTemplatesTypeMigration38','1','auto'),
(237384,'vcv-system:migration:PredefinedTemplateMigration','1','auto'),
(237385,'vcv-system:migration:templates114Migration','1','auto'),
(237386,'vcv-system:migration:updateGlobalElements115Migration','1','auto'),
(237387,'vcv-system:migration:mergeArchivesLayoutsMigrationv43','1','auto'),
(237388,'vcv-system:migration:assets22Migration','1','auto'),
(237389,'vcv-system:migration:licenseMigrationV24','1','auto'),
(237390,'vcv-system:migration:settingsMigration220','1','auto'),
(237393,'vcv-system:migration:globalJavascriptMigration','1','auto'),
(237394,'vcv-hubElements','a:0:{}','auto'),
(237395,'vcv-system:migration:defaultElementsMigration36','1','auto'),
(237396,'vcv-vcv_templates-capabilities-set','1','auto'),
(237397,'vcv-notifications','[]','auto'),
(237400,'vcv-vcv_tutorials-capability-migration-45','1','auto'),
(237401,'vcv-vcv_tutorials-capabilities-set','1','auto'),
(237402,'vcv-siteUrls','a:2:{s:8:\"prevUrls\";a:0:{}s:10:\"currentUrl\";s:32:\"https://guidoconstructioninc.com\";}','auto'),
(237405,'_transient_vcv-45.15.0admin:notices','a:1:{s:19:\"hubActivationNotice\";a:6:{s:4:\"name\";s:19:\"hubActivationNotice\";s:7:\"message\";s:284:\"<strong>Visual Composer:</strong> <a href=\"https://guidoconstructioninc.com/wp-admin/admin.php?page=vcv-activate-license&#038;vcv-ref=wpdashboard\">Activate Premium</a> license to get full access to Visual Composer Hub. A place to download more content elements, templates, and addons.\";s:4:\"type\";s:4:\"info\";s:4:\"time\";i:1758673232;s:11:\"dismissible\";b:1;s:13:\"wpDismissible\";b:0;}}','on'),
(237407,'secret_key',' 5,[Ukl$,f,{z~O!/9%J#l8#^6_pcesqEt$FcH86&&%&$P%gm(wThn+{:xm@NU.!','off'),
(237408,'vcv-hubA:d:93ee5076aedeac6b94924d1c4afe2059','a:5:{s:4:\"name\";s:20:\"Plugin Version Check\";s:6:\"action\";s:24:\"addon/pluginVersionCheck\";s:4:\"data\";a:4:{s:10:\"release_id\";i:1033;s:9:\"bundle_id\";i:3676;s:3:\"url\";s:455:\"https://s3.us-west-2.amazonaws.com/cdn.hub.visualcomposer.com/vcwb-bundles/addon-pluginVersionCheck-0.10-1632205435-61497a7b45bbe2.69160734.bundle.zip?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAUDXJGT3MQLAIDYUL%2F20250924%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20250924T001636Z&X-Amz-SignedHeaders=host&X-Amz-Expires=7200&X-Amz-Signature=6f0569ed193aa5a322b9cbc4f5ee8afcab3b5c96fd32e32ffb5c89c7f3a312ba\";s:12:\"dependencies\";a:0:{}}s:8:\"checksum\";s:32:\"8477b23806f66297a185ada73264cc0d\";s:7:\"version\";s:4:\"0.10\";}','auto'),
(237409,'vcv-activation-survey-user-reason-to-use','client','auto'),
(237441,'gutenberg_version_migration','9.8.0','auto'),
(237493,'update_mysticky_version_2_5_7','1','auto'),
(237494,'mystickymenu_intro_box','hide','auto'),
(237497,'sticky_header_status','done','auto'),
(237498,'has_sticky_header_old_version','no','auto'),
(237499,'mysticky_option_name','a:14:{s:17:\"stickymenu_enable\";s:1:\"1\";s:26:\"mysticky_class_id_selector\";s:3:\"top\";s:23:\"mysticky_class_selector\";s:7:\".navbar\";s:14:\"myfixed_zindex\";s:5:\"99990\";s:12:\"myfixed_fade\";s:5:\"slide\";s:28:\"myfixed_disable_small_screen\";s:1:\"0\";s:25:\"mysticky_active_on_height\";s:1:\"0\";s:30:\"mysticky_active_on_height_home\";s:1:\"0\";s:15:\"myfixed_bgcolor\";s:7:\"#386fb3\";s:23:\"myfixed_transition_time\";s:3:\"0.3\";s:17:\"myfixed_textcolor\";s:7:\"#211e1f\";s:15:\"myfixed_opacity\";s:2:\"90\";s:14:\"device_desktop\";s:2:\"on\";s:13:\"device_mobile\";s:2:\"on\";}','auto'),
(237500,'update_mysticky_version_2_6','1','auto'),
(237501,'my-sticky-menu_show_upgrade_box_after','2025-10-09','auto'),
(237502,'mystickymenu_show_affiliate_box_after','2025-09-29','auto'),
(237807,'theme_mods_jevelin','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:6:\"header\";i:16;}s:18:\"custom_css_post_id\";i:-1;s:15:\"jevelin_options\";a:46:{s:13:\"header_layout\";s:1:\"3\";s:4:\"logo\";a:5:{s:3:\"url\";s:96:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/GuidoConstructionInc.-Small-Logo.png\";s:2:\"id\";s:3:\"701\";s:6:\"height\";s:3:\"154\";s:5:\"width\";s:3:\"231\";s:9:\"thumbnail\";s:104:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/GuidoConstructionInc.-Small-Logo-150x150.png\";}s:10:\"logo_light\";a:5:{s:3:\"url\";s:78:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/GCI-Light-Logo.png\";s:2:\"id\";s:3:\"699\";s:6:\"height\";s:3:\"132\";s:5:\"width\";s:3:\"197\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"logo_sticky\";a:5:{s:3:\"url\";s:71:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Asset-3.png\";s:2:\"id\";s:3:\"698\";s:6:\"height\";s:2:\"70\";s:5:\"width\";s:3:\"246\";s:9:\"thumbnail\";s:0:\"\";}s:17:\"header_mega_style\";s:6:\"style2\";s:19:\"header_search_style\";s:6:\"style2\";s:12:\"header_icons\";s:5:\"small\";s:13:\"topbar_status\";s:1:\"1\";s:13:\"contact_phone\";s:15:\"+1(541)672-7349\";s:13:\"contact_email\";s:29:\"info@guidoconstructioninc.com\";s:16:\"contact_location\";s:37:\"190 NE Somerset Ct Roseburg, OR 97470\";s:10:\"logo_title\";s:3:\"off\";s:12:\"header_width\";s:7:\"default\";s:18:\"global_page_layout\";s:4:\"full\";s:10:\"blog_style\";s:6:\"style2\";s:16:\"smooth-scrooling\";s:1:\"1\";s:13:\"crispy_images\";s:1:\"1\";s:13:\"page_comments\";s:1:\"0\";s:8:\"titlebar\";s:3:\"off\";s:12:\"styling_body\";a:9:{s:11:\"font-family\";s:14:\"Georgia, serif\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:5:\"false\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:4:\"14px\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:7:\"#8d8d8d\";}s:12:\"accent_color\";s:7:\"#386fb3\";s:18:\"accent_hover_color\";s:7:\"#aeaeae\";s:10:\"link_color\";s:7:\"#cbdb2d\";s:16:\"link_hover_color\";s:7:\"#cbdb2d\";s:16:\"styling_headings\";a:6:{s:11:\"font-family\";s:14:\"Georgia, serif\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:5:\"false\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:5:\"color\";s:7:\"#3f3f3f\";}s:27:\"header_top_background_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:0:\"\";s:4:\"rgba\";s:0:\"\";}s:15:\"header_nav_font\";s:7:\"heading\";s:23:\"header_nav_active_color\";s:7:\"#3970b5\";s:18:\"footer_hover_color\";s:7:\"#cbdb2d\";s:12:\"footer_width\";s:7:\"default\";s:14:\"footer_columns\";s:1:\"2\";s:15:\"copyright_style\";s:6:\"style2\";s:14:\"copyright_logo\";a:5:{s:3:\"url\";s:78:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/GCI-Light-Logo.png\";s:2:\"id\";s:3:\"699\";s:6:\"height\";s:3:\"132\";s:5:\"width\";s:3:\"197\";s:9:\"thumbnail\";s:0:\"\";}s:25:\"copyright_deveveloper_all\";s:1:\"0\";s:14:\"copyright_text\";s:121:\"© 2025 Guido Construction Inc. All rights reserved. Website developed, designed, and maintained by Burt Marketing Group.\";s:26:\"copyright_text_multi_lines\";s:2:\"on\";s:21:\"copyright_deveveloper\";s:1:\"0\";s:15:\"footer_parallax\";s:2:\"on\";s:17:\"copyright_padding\";s:19:\"20px 20px 20px 20px\";s:15:\"header_elements\";a:5:{s:6:\"social\";s:1:\"0\";s:13:\"social_mobile\";s:1:\"0\";s:6:\"search\";s:1:\"1\";s:8:\"woo_cart\";s:1:\"0\";s:11:\"woo_account\";s:0:\"\";}s:11:\"page_loader\";s:3:\"off\";s:16:\"header_uppercase\";s:1:\"1\";s:17:\"contact_workhours\";s:21:\"Monday-Friday 7am-4pm\";s:23:\"header_background_color\";a:3:{s:5:\"color\";s:7:\"#fffcfc\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(255,252,252,1)\";}s:16:\"header_top_color\";a:3:{s:5:\"color\";s:7:\"#11478a\";s:5:\"alpha\";s:4:\"0.71\";s:4:\"rgba\";s:20:\"rgba(17,71,138,0.71)\";}s:17:\"header_text_color\";a:3:{s:5:\"color\";s:7:\"#3970b5\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:18:\"rgba(57,112,181,1)\";}}}','on'),
(237808,'widget_contacts','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(237809,'widget_image','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(237810,'widget_imagev2','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(237811,'widget_portfolio','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(237812,'widget_recent_posts','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(237813,'widget_social','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(237814,'widget_jevelin-instagram','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),
(237817,'elementor_disable_color_schemes','yes','auto'),
(237818,'elementor_disable_typography_schemes','yes','auto'),
(237819,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"660\";s:6:\"height\";s:3:\"660\";s:4:\"crop\";i:1;}','auto'),
(237820,'shop_single_image_size','a:3:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";i:0;}','auto'),
(237821,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";i:1;}','auto'),
(237822,'jevelin_settings_updated','797974558','auto'),
(237828,'jevelin_framework','redux','auto'),
(237829,'elementor_active_kit','692','auto'),
(237830,'elementor_font_display','swap','auto'),
(237834,'elementor_landing_pages_activation','0','auto'),
(237835,'elementor_checklist','{\"last_opened_timestamp\":null,\"first_closed_checklist_in_editor\":false,\"is_popup_minimized\":false,\"steps\":{\"add_logo\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"set_fonts_and_colors\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"create_pages\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"setup_header\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"assign_homepage\":{\"is_marked_completed\":false,\"is_immutable_completed\":false}},\"should_open_in_editor\":false}','auto'),
(237836,'elementor_version','3.34.0','auto'),
(237837,'elementor_install_history','a:3:{s:6:\"3.32.2\";i:1758732549;s:6:\"3.32.3\";i:1759222476;s:6:\"3.34.0\";i:1767645177;}','auto'),
(237838,'elementor_events_db_version','1.0.0','off'),
(237841,'elementor_onboarded','1','auto'),
(237843,'_elementor_onboarding_features','a:2:{s:9:\"essential\";a:0:{}s:8:\"advanced\";a:0:{}}','auto'),
(237844,'jevelin_options','a:245:{s:8:\"last_tab\";s:0:\"\";s:13:\"content_width\";s:4:\"1200\";s:18:\"global_page_layout\";s:4:\"full\";s:11:\"page_layout\";s:4:\"full\";s:18:\"boxed_border_style\";s:6:\"shadow\";s:22:\"boxed_background_color\";s:5:\"Array\";s:22:\"boxed_background_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:10:\"blog_style\";s:6:\"style2\";s:8:\"wc_style\";s:6:\"style3\";s:13:\"white_borders\";s:1:\"0\";s:27:\"white_borders_only_on_pages\";s:1:\"0\";s:17:\"responsive_layout\";s:1:\"1\";s:16:\"smooth-scrooling\";s:1:\"1\";s:11:\"back_to_top\";s:1:\"1\";s:19:\"back_to_top_rounded\";s:1:\"1\";s:11:\"rtl_support\";s:1:\"0\";s:13:\"crispy_images\";s:1:\"1\";s:13:\"page_comments\";s:1:\"0\";s:19:\"page_comments_depth\";s:1:\"5\";s:9:\"one_pager\";s:1:\"1\";s:29:\"one_pager_anchor_scroll_speed\";s:4:\"1000\";s:7:\"api_key\";s:0:\"\";s:20:\"theme_options_stored\";s:4:\"file\";s:23:\"styling_body_background\";s:7:\"#ffffff\";s:12:\"styling_body\";a:9:{s:11:\"font-family\";s:14:\"Georgia, serif\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:9:\"font-size\";s:4:\"14px\";s:11:\"line-height\";s:4:\"14px\";s:14:\"letter-spacing\";s:0:\"\";s:5:\"color\";s:7:\"#8d8d8d\";}s:19:\"google_fonts_subset\";a:7:{s:5:\"greek\";s:0:\"\";s:9:\"greek-ext\";s:0:\"\";s:5:\"latin\";s:1:\"1\";s:10:\"vietnamese\";s:0:\"\";s:12:\"cyrillic-ext\";s:0:\"\";s:9:\"latin-ext\";s:0:\"\";s:8:\"cyrillic\";s:0:\"\";}s:17:\"google_fonts_mini\";s:1:\"1\";s:12:\"accent_color\";s:7:\"#386fb3\";s:18:\"accent_hover_color\";s:7:\"#aeaeae\";s:10:\"link_color\";s:7:\"#cbdb2d\";s:16:\"link_hover_color\";s:7:\"#cbdb2d\";s:16:\"styling_headings\";a:6:{s:11:\"font-family\";s:14:\"Georgia, serif\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:5:\"color\";s:7:\"#3f3f3f\";}s:10:\"styling_h1\";s:2:\"30\";s:10:\"styling_h2\";s:2:\"24\";s:10:\"styling_h3\";s:2:\"21\";s:10:\"styling_h4\";s:2:\"18\";s:10:\"styling_h5\";s:2:\"16\";s:10:\"styling_h6\";s:2:\"14\";s:23:\"header_background_color\";a:3:{s:5:\"color\";s:7:\"#fffcfc\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(255,252,252,1)\";}s:23:\"header_background_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:17:\"header_text_color\";a:3:{s:5:\"color\";s:7:\"#3970b5\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:18:\"rgba(57,112,181,1)\";}s:19:\"header_border_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:27:\"header_top_background_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:0:\"\";s:4:\"rgba\";s:0:\"\";}s:16:\"header_top_color\";a:3:{s:5:\"color\";s:7:\"#11478a\";s:5:\"alpha\";s:4:\"0.71\";s:4:\"rgba\";s:20:\"rgba(17,71,138,0.71)\";}s:23:\"header_light_text_color\";s:0:\"\";s:30:\"header_light_text_active_color\";s:0:\"\";s:15:\"header_nav_font\";s:7:\"heading\";s:15:\"header_nav_size\";s:4:\"14px\";s:16:\"header_nav_color\";a:3:{s:5:\"color\";s:7:\"#3d3d3d\";s:5:\"alpha\";s:4:\"0.69\";s:4:\"rgba\";s:19:\"rgba(61,61,61,0.69)\";}s:22:\"header_nav_hover_color\";a:3:{s:5:\"color\";s:7:\"#3d3d3d\";s:5:\"alpha\";s:4:\"0.80\";s:4:\"rgba\";s:18:\"rgba(61,61,61,0.8)\";}s:23:\"header_nav_active_color\";s:7:\"#3970b5\";s:34:\"header_nav_active_background_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:21:\"menu_background_color\";a:3:{s:5:\"color\";s:7:\"#232323\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:16:\"rgba(35,35,35,1)\";}s:16:\"menu_title_color\";s:0:\"\";s:15:\"menu_link_color\";s:7:\"#aaaaaa\";s:21:\"menu_link_hover_color\";s:7:\"#ffffff\";s:22:\"menu_link_border_color\";a:3:{s:5:\"color\";s:7:\"#303030\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:16:\"rgba(48,48,48,1)\";}s:23:\"menu_active_background1\";s:0:\"\";s:23:\"menu_active_background2\";s:0:\"\";s:14:\"content_border\";s:7:\"#e5e5e5\";s:25:\"content_button_background\";s:7:\"#f2f2f2\";s:31:\"content_button_background_hover\";s:7:\"#e5e5e5\";s:25:\"content_button_text_color\";s:7:\"#9a9a9a\";s:30:\"content_input_background_color\";s:7:\"#ffffff\";s:26:\"content_input_border_color\";a:3:{s:5:\"color\";s:7:\"#e3e3e3\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(227,227,227,1)\";}s:24:\"content_input_text_color\";s:7:\"#8d8d8d\";s:31:\"content_search_background_color\";s:7:\"#f0f0f0\";s:25:\"content_search_text_color\";s:7:\"#505050\";s:16:\"sidebar_headings\";a:2:{s:9:\"font-size\";s:4:\"20px\";s:5:\"color\";s:7:\"#505050\";}s:19:\"sidebar_font_weight\";s:7:\"default\";s:20:\"sidebar_border_color\";a:3:{s:5:\"color\";s:7:\"#e3e3e3\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:19:\"rgba(227,227,227,1)\";}s:23:\"footer_background_color\";s:7:\"#262626\";s:23:\"footer_background_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:15:\"footer_headings\";a:2:{s:9:\"font-size\";s:4:\"20px\";s:5:\"color\";s:7:\"#ffffff\";}s:17:\"footer_text_color\";s:7:\"#e3e3e3\";s:17:\"footer_link_color\";s:7:\"#ffffff\";s:18:\"footer_hover_color\";s:7:\"#cbdb2d\";s:17:\"footer_icon_color\";s:7:\"#f7f7f7\";s:19:\"footer_border_color\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"alpha\";s:3:\"0.1\";s:4:\"rgba\";s:21:\"rgba(255,255,255,0.1)\";}s:26:\"copyright_background_color\";a:3:{s:5:\"color\";s:7:\"#222222\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:16:\"rgba(34,34,34,1)\";}s:20:\"copyright_text_color\";s:7:\"#ffffff\";s:20:\"copyright_link_color\";s:7:\"#ffffff\";s:21:\"copyright_hover_color\";s:7:\"#c0e3eb\";s:22:\"copyright_border_color\";a:3:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"alpha\";s:4:\"0.15\";s:4:\"rgba\";s:22:\"rgba(255,255,255,0.15)\";}s:10:\"popover_wc\";s:2:\"on\";s:13:\"popover_color\";s:0:\"\";s:12:\"popover_font\";s:11:\"additional1\";s:16:\"additional_font1\";a:5:{s:11:\"font-family\";s:7:\"Raleway\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";}s:16:\"additional_font2\";a:5:{s:11:\"font-family\";s:7:\"Raleway\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";}s:13:\"header_layout\";s:1:\"3\";s:4:\"logo\";a:5:{s:3:\"url\";s:96:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/GuidoConstructionInc.-Small-Logo.png\";s:2:\"id\";s:3:\"701\";s:6:\"height\";s:3:\"154\";s:5:\"width\";s:3:\"231\";s:9:\"thumbnail\";s:104:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/GuidoConstructionInc.-Small-Logo-150x150.png\";}s:10:\"logo_light\";a:5:{s:3:\"url\";s:78:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/GCI-Light-Logo.png\";s:2:\"id\";s:3:\"699\";s:6:\"height\";s:3:\"132\";s:5:\"width\";s:3:\"197\";s:9:\"thumbnail\";s:86:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/GCI-Light-Logo-150x132.png\";}s:11:\"logo_sticky\";a:5:{s:3:\"url\";s:71:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Asset-3.png\";s:2:\"id\";s:3:\"698\";s:6:\"height\";s:2:\"70\";s:5:\"width\";s:3:\"246\";s:9:\"thumbnail\";s:78:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Asset-3-150x70.png\";}s:17:\"header_logo_sizes\";s:7:\"orginal\";s:33:\"header_logo_sizes_standard_height\";s:2:\"40\";s:31:\"header_logo_sizes_sticky_height\";s:2:\"40\";s:35:\"header_logo_sizes_responsive_height\";s:2:\"40\";s:11:\"logo_status\";s:1:\"1\";s:10:\"logo_title\";s:3:\"off\";s:16:\"logo_title_value\";s:0:\"\";s:9:\"logo_both\";s:3:\"off\";s:17:\"header_mega_style\";s:6:\"style2\";s:30:\"ipad_landscape_full_navigation\";s:1:\"0\";s:12:\"header_width\";s:7:\"default\";s:13:\"header_sticky\";s:1:\"1\";s:20:\"header_mobile_sticky\";s:1:\"0\";s:15:\"header_elements\";a:5:{s:6:\"social\";s:0:\"\";s:13:\"social_mobile\";s:0:\"\";s:6:\"search\";s:1:\"1\";s:8:\"woo_cart\";s:0:\"\";s:11:\"woo_account\";s:0:\"\";}s:19:\"header_search_style\";s:6:\"style2\";s:16:\"header_uppercase\";s:1:\"1\";s:12:\"header_icons\";s:5:\"small\";s:21:\"header_search_results\";s:5:\"posts\";s:16:\"header_menu_icon\";s:9:\"hamburger\";s:11:\"header_lang\";s:3:\"off\";s:13:\"topbar_status\";s:1:\"1\";s:13:\"contact_phone\";s:15:\"+1(541)672-7349\";s:13:\"contact_email\";s:29:\"info@guidoconstructioninc.com\";s:16:\"contact_location\";s:37:\"190 NE Somerset Ct Roseburg, OR 97470\";s:17:\"contact_workhours\";s:21:\"Monday-Friday 7am-4pm\";s:31:\"header_animation_dropdown_delay\";s:1:\"1\";s:31:\"header_animation_dropdown_speed\";s:3:\"0.3\";s:25:\"header_animation_dropdown\";s:12:\"easeOutQuint\";s:21:\"header_mobile_spacing\";s:7:\"compact\";s:8:\"titlebar\";s:3:\"off\";s:15:\"titlebar_layout\";s:4:\"side\";s:15:\"titlebar_height\";s:6:\"medium\";s:19:\"titlebar_background\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:28:\"titlebar_background_parallax\";s:3:\"off\";s:25:\"titlebar-background-color\";s:7:\"#fbfbfb\";s:20:\"titlebar-title-color\";s:0:\"\";s:26:\"titlebar-breadcrumbs-color\";s:0:\"\";s:21:\"titlebar-headings-seo\";s:2:\"h2\";s:19:\"titlebar-home-title\";s:4:\"Home\";s:19:\"titlebar-post-title\";s:9:\"Blog Post\";s:24:\"titlebar-portfolio-title\";s:9:\"Portfolio\";s:25:\"titlebar-blog-woocommerce\";s:4:\"Shop\";s:18:\"titlebar-404-title\";s:23:\"Page could not be found\";s:23:\"titlebar_mobile_spacing\";s:7:\"compact\";s:21:\"titlebar_mobile_title\";s:2:\"on\";s:15:\"footer_template\";s:7:\"default\";s:14:\"footer_widgets\";s:2:\"on\";s:12:\"footer_width\";s:7:\"default\";s:14:\"footer_columns\";s:1:\"2\";s:15:\"footer_parallax\";s:2:\"on\";s:13:\"copyright_bar\";s:2:\"on\";s:15:\"copyright_style\";s:6:\"style2\";s:22:\"copyright_style_social\";s:2:\"on\";s:17:\"copyright_padding\";s:19:\"20px 20px 20px 20px\";s:14:\"copyright_logo\";a:5:{s:3:\"url\";s:78:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/GCI-Light-Logo.png\";s:2:\"id\";s:3:\"699\";s:6:\"height\";s:3:\"132\";s:5:\"width\";s:3:\"197\";s:9:\"thumbnail\";s:86:\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/GCI-Light-Logo-150x132.png\";}s:14:\"copyright_text\";s:121:\"© 2025 Guido Construction Inc. All rights reserved. Website developed, designed, and maintained by Burt Marketing Group.\";s:26:\"copyright_text_multi_lines\";s:2:\"on\";s:21:\"copyright_deveveloper\";s:1:\"0\";s:25:\"copyright_deveveloper_all\";s:1:\"0\";s:13:\"social_newtab\";s:1:\"1\";s:14:\"social_twitter\";s:0:\"\";s:15:\"social_facebook\";s:0:\"\";s:16:\"social_instagram\";s:0:\"\";s:14:\"social_youtube\";s:0:\"\";s:16:\"social_pinterest\";s:0:\"\";s:13:\"social_flickr\";s:0:\"\";s:15:\"social_dribbble\";s:0:\"\";s:15:\"social_linkedIn\";s:0:\"\";s:12:\"social_skype\";s:0:\"\";s:15:\"social_snapchat\";s:0:\"\";s:14:\"social_spotify\";s:0:\"\";s:17:\"social_soundcloud\";s:0:\"\";s:13:\"social_reddit\";s:0:\"\";s:13:\"social_tumblr\";s:0:\"\";s:16:\"social_wordpress\";s:0:\"\";s:13:\"social_custom\";a:1:{i:0;a:8:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:0:\"\";s:4:\"sort\";s:1:\"0\";s:13:\"attachment_id\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:5:\"thumb\";s:0:\"\";}}s:10:\"pagination\";s:2:\"on\";s:10:\"blog-items\";s:2:\"12\";s:17:\"blog_round_images\";s:3:\"off\";s:11:\"post_layout\";s:13:\"sidebar-right\";s:12:\"post_overlay\";s:6:\"style1\";s:13:\"post_elements\";a:6:{s:4:\"date\";s:1:\"1\";s:5:\"share\";s:1:\"1\";s:9:\"prev_next\";s:1:\"1\";s:9:\"athor_box\";s:1:\"1\";s:13:\"related_posts\";s:1:\"1\";s:8:\"comments\";s:1:\"1\";}s:21:\"post_meta_author_link\";s:2:\"on\";s:18:\"post_related_posts\";s:2:\"on\";s:25:\"post_main_image_lightbiox\";s:2:\"on\";s:9:\"post_desc\";s:2:\"45\";s:21:\"amp_post_accent_color\";s:0:\"\";s:22:\"amp_post_content_color\";s:0:\"\";s:22:\"amp_post_heading_color\";s:0:\"\";s:21:\"amp_post_content_size\";s:0:\"\";s:21:\"amp_logo_size_desktop\";s:2:\"40\";s:20:\"amp_logo_size_mobile\";s:2:\"22\";s:8:\"amp_mode\";s:9:\"optimised\";s:19:\"portfolio_main_page\";s:0:\"\";s:28:\"portfolio_single_page_layout\";s:7:\"default\";s:17:\"portfolio_related\";s:1:\"1\";s:20:\"portfolio_categories\";s:2:\"on\";s:18:\"portfolio_comments\";s:1:\"0\";s:15:\"portfolio_share\";s:1:\"1\";s:22:\"portfolio_single_image\";s:5:\"large\";s:26:\"portfolio_gallery_autoplay\";s:3:\"off\";s:35:\"portfolio_single_related_image_size\";s:14:\"post-thumbnail\";s:24:\"portfolio_archive_layout\";s:7:\"default\";s:25:\"portfolio_archive_columns\";s:1:\"3\";s:26:\"portfolio_archive_per_page\";s:2:\"12\";s:25:\"portfolio_gallery_columns\";s:8:\"columns3\";s:24:\"portfolio_gallery_slider\";s:3:\"off\";s:17:\"portfolio_padding\";s:0:\"\";s:19:\"lightbox_transition\";s:7:\"elastic\";s:16:\"lightbox_opacity\";s:2:\"88\";s:25:\"lightbox_window_max_width\";s:0:\"\";s:26:\"lightbox_window_max_height\";s:0:\"\";s:20:\"lightbox_window_size\";s:2:\"80\";s:19:\"carousel_dots_style\";s:6:\"style1\";s:21:\"carousel_dots_spacing\";s:3:\"5px\";s:24:\"carousel_dots_top_margin\";s:3:\"0px\";s:18:\"carousel_dots_size\";s:8:\"standard\";s:30:\"carousel_dots_background_color\";s:0:\"\";s:26:\"carousel_dots_border_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:37:\"carousel_dots_active_background_color\";s:0:\"\";s:33:\"carousel_dots_active_border_color\";a:3:{s:5:\"color\";s:0:\"\";s:5:\"alpha\";s:1:\"1\";s:4:\"rgba\";s:0:\"\";}s:7:\"wc_sort\";s:1:\"1\";s:12:\"wc_sort_sale\";s:3:\"off\";s:11:\"wc_lightbox\";s:7:\"jevelin\";s:10:\"wc_columns\";s:1:\"4\";s:9:\"wc_layout\";s:12:\"sidebar-left\";s:8:\"wc_items\";s:2:\"12\";s:31:\"wc_items_additional_information\";s:3:\"cat\";s:18:\"wc_quantity_button\";s:2:\"on\";s:9:\"wc_banner\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:16:\"wc_layout_single\";s:7:\"default\";s:7:\"wc_tabs\";s:5:\"right\";s:10:\"wc_related\";s:1:\"1\";s:12:\"lazy_loading\";s:8:\"disabled\";s:11:\"page_loader\";s:3:\"off\";s:17:\"page_loader_style\";s:12:\"cube-folding\";s:24:\"page_loader_accent_color\";s:0:\"\";s:28:\"page_loader_background_color\";s:7:\"#ffffff\";s:10:\"404_status\";s:1:\"1\";s:17:\"404_wpbakery_page\";s:8:\"disabled\";s:9:\"404_title\";s:35:\"Oops, This Page Could Not Be Found!\";s:8:\"404_text\";s:106:\"The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.\";s:10:\"404_button\";s:6:\"Reload\";s:9:\"404_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"404_background\";s:7:\"#3f3f3f\";s:13:\"notice_status\";s:1:\"0\";s:11:\"notice_text\";s:58:\"By using our website, you agree to the use of our cookies.\";s:12:\"notice_close\";s:6:\"enable\";s:15:\"notice_more_url\";s:0:\"\";s:10:\"custom_css\";s:12:\"body {\r\n	\r\n}\";s:9:\"custom_js\";s:44:\"jQuery(document).ready( function($){\r\n	\r\n});\";s:16:\"google_analytics\";s:0:\"\";}','auto'),
(237845,'jevelin_options-transients','a:4:{s:14:\"changed_values\";a:1:{s:11:\"logo_status\";s:1:\"0\";}s:9:\"last_save\";i:1767647805;s:13:\"last_compiler\";i:1767647805;s:11:\"last_import\";i:1767647805;}','auto'),
(237846,'e_editor_counter','2','auto'),
(237847,'_elementor_installed_time','1758732563','auto'),
(237850,'_elementor_free_to_pro_upsell','a:2:{s:7:\"timeout\";i:1758736163;s:5:\"value\";s:723:\"[{\"id\":\"animated_headline\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/free-to-pro-upsell\\/v1\\/images\\/animated_headline.jpg\"},{\"id\":\"video_playlist\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/free-to-pro-upsell\\/v1\\/images\\/video_playlist.jpg\"},{\"id\":\"cta\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/free-to-pro-upsell\\/v1\\/images\\/cta.jpg\"},{\"id\":\"testimonial_widget\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/free-to-pro-upsell\\/v1\\/images\\/testimonial_widget.jpg\"},{\"id\":\"image_carousel\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/free-to-pro-upsell\\/v1\\/images\\/image_carousel.jpg\"},{\"id\":\"connect-pro-upgrade\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/free-to-pro-upsell\\/v1\\/images\\/connect-pro-upgrade.jpg\"}]\";}','off'),
(237851,'_elementor_notifications_data','a:2:{s:7:\"timeout\";i:1758736164;s:5:\"value\";s:18404:\"[{\"id\":\"variables-3.31\",\"title\":\"Scalable design with Variables\",\"description\":\"Define once, reuse everywhere. Color & Font Variables help you build consistent, scalable design systems that update globally and are perfect for large sites or teams.\",\"topic\":\"Editor V4 Alpha\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-variables.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"host-special-offer\",\"title\":\"Host with Elementor, Get Unified Support for Building & Hosting\",\"description\":\"Advance to Elementor\'s Cloud Hosting powered by Google Cloud and Cloudflare. Use the coupon CLOUDPLUSSPECIAL2025 to get Host Cloud Plus at the price of Host Cloud.\",\"topic\":\"Special offer: Elementor Host\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/host_coupon.png\",\"chipTags\":[\"Cloud Hosting\"],\"cta\":\"Get it Now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/host-whats-new-host-discount\\/\"},{\"id\":\"filters-3.31\",\"title\":\"Visual effects with Filters and Backdrop Filters\",\"description\":\"Apply multiple Filters like blur, brightness, and contrast. Stack, reorder, and preview in real time without writing a line of code.\",\"topic\":\"Editor V4 Alpha\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-filters.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"ally-assistant\",\"title\":\"New! Fix accessibility issues with Ally Assistant\",\"description\":\"Scan any page for accessibility issues and fix them in one click. From color contrast to missing alt text, Ally Assistant provides guided steps or AI-powered fixes to make your site more inclusive.\",\"topic\":\"Ally by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ally-assistant.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Scan for free\",\"ctaLink\":\"http:\\/\\/go.elementor.com\\/acc-assistant-launch-whats-new\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"pojo-accessibility\\/pojo-accessibility.php\"}]]},{\"id\":\"classes-3.31\",\"title\":\"Smarter Class Manager tools\",\"description\":\"Quickly locate and manage Global Classes with usage counts, a new locator panel, and full class search. Perfect for scaling and refactoring complex design systems.\",\"topic\":\"Editor V4 Alpha\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-classes.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"send-notification-august\",\"title\":\"All Your Assets, One Library\",\"description\":\"Save time and skip the re-uploads - now you can pull images straight from your WordPress Media Library into Send. Faster, simpler, and built for WordPress.\",\"topic\":\"Send: Email & SMS built for WooCommerce\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/aug_send.png\",\"chipTags\":[\"Cart abandonment\"],\"cta\":\"Upload Your Assets\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/ML_WN\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"send-app\\/send-app.php\"}]]},{\"id\":\"attributes-3.31\",\"title\":\"Add semantic HTML with Attributes\",\"description\":\"Add custom HTML attributes like aria-*, data-*, and role to any element. Structure your markup for better accessibility, performance, and compliance.\",\"topic\":\"Elementor Pro 3.31\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-attributes.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"attributes-3.31\",\"title\":\"Add semantic HTML with Attributes\",\"description\":\"Add custom HTML attributes like aria-*, data-*, and role to any element. Structure your markup for better accessibility, performance, and compliance.\",\"topic\":\"Elementor Pro 3.31\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-attributes.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-attributes\\/\"},{\"id\":\"classes-3.30\",\"title\":\"Better class control\",\"description\":\"Get popovers with your class name, breakpoint, state and possible conflicts. Plus, the exact class names you define are now reflected in the code, making debugging and working with external tools easier!\",\"topic\":\"Editor V4 Alpha\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/classes-3.30.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.39-v4-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"cloud-websites-3.30\",\"title\":\"Full Website Templates in the cloud\",\"description\":\"Save and apply entire websites, including multiple pages, styles, site settings, media, and layout configurations - directly from the cloud.\",\"topic\":\"Elementor Pro 3.30\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cloud-3.30.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.39-v4-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"cloud-websites-3.30\",\"title\":\"Full Website Templates in the cloud\",\"description\":\"Save and apply entire websites, including multiple pages, styles, site settings, media, and layout configurations - directly from the cloud.\",\"topic\":\"Elementor Pro 3.30\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cloud-3.30.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.30-cloud-websites\\/\"},{\"id\":\"tools-3.30\",\"title\":\"Essential Editor tools\",\"description\":\"V4 now includes a long list of essential V3 capabilities, re-engineered to fit the new framework - IDs, custom unit, anchor offset, display none, object fit, clear icons and more!\",\"topic\":\"Editor V4 Alpha\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/tools-3.30.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.39-v4-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"youtube-3.30\",\"title\":\"YouTube Element\",\"description\":\"The new YouTube Element is purpose-built to support V4 capabilities with faster rendering, better performance, and familiar controls like autoplay, loop, mute, and aspect ratio.\",\"topic\":\"Editor V4 Alpha\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/youtube-3.30.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.39-v4-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"host-google-cloud\",\"title\":\"Deliver fast, secure websites at scale - free migration included!\",\"description\":\"Host your site on Elementor\\u2019s infrastructure - built for speed, security, and scale. Powered by Google Cloud, with free migration and 24\\/7 expert support.\",\"topic\":\"Host\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/host-google-cloud.png\",\"chipTags\":[\"Cloud Hosting\"],\"link\":\"https:\\/\\/go.elementor.com\\/elementor-host-google-cloud\",\"readMoreText\":\"Read More\"},{\"id\":\"cloud-templates-3.29\",\"title\":\"Your Templates, available everywhere\",\"description\":\"Store sections, containers, and full pages in the cloud\\u2014making them accessible across all your Pro-connected sites. Style once, reuse anywhere!\",\"topic\":\"Elementor Pro 3.29\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cloud-templates.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.29-cloud-templates-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"cloud-templates-3.29\",\"title\":\"Your Templates, available everywhere\",\"description\":\"Store sections, containers, and full pages in the cloud\\u2014making them accessible across all your Pro-connected sites. Style once, reuse anywhere!\",\"topic\":\"Elementor Pro 3.29\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cloud-templates.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.29-cloud-templates\\/\"},{\"id\":\"classes-3.29\",\"title\":\"Classes: Style Once, Apply Everywhere\",\"description\":\"Create Classes to define styling patterns once and apply them across your entire site with a single click. Add States for stunning hover and focus effects\\u2014no coding needed!\",\"topic\":\"Editor V4 Alpha\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/v4-classes.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.29-editor-v4\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"style-tab-3.29\",\"title\":\"Consistent Styling Everywhere\",\"description\":\"Every V4 element shares the same styling capabilities in the same logical order and location. Plus, we\'ve streamlined from 3 tabs to just 2\\u2014content in one, styling in the other!\",\"topic\":\"Editor V4 Alpha\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/v4-style-tab.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.29-editor-v4\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"responsive-3.29\",\"title\":\"Fully Responsive Design\",\"description\":\"With Editor V4, every single style property can be customized per device. Complete creative control for desktop, tablet, and mobile!\",\"topic\":\"Editor V4 Alpha\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/v4-responsive.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.29-editor-v4\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"performance-3.29\",\"title\":\"Blazing fast performance\",\"description\":\"In Editor V4, each element uses one clean div instead of multiple nested divs like in the current version\\u2014your sites will load lightning-fast with cleaner code!\",\"topic\":\"Editor V4 Alpha\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/v4-performance.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.29-editor-v4\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"migration-host\",\"title\":\"Move to Better Cloud Hosting, Painlessly\",\"description\":\"Migrate your Elementor website for free to a home that\\u2019s perfect for it, in minutes, with a combination of\\u2028advanced automation and free expert support\",\"topic\":\"Host\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/migration-host.png\",\"chipTags\":[\"Cloud Hosting\"],\"link\":\"https:\\/\\/go.elementor.com\\/hosting-free-migration\",\"readMoreText\":\"Learn More\",\"cta\":\"Migrate for free\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/hosting-free-migration\"},{\"id\":\"ai-isolate-object\",\"title\":\"Sharper product images, instantly\",\"description\":\"Remove distractions and reframe your shots with the new Isolate Object tool powered by Elementor AI \\u2014 perfect for a polished, uniform Woo storefront.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/isolate-object-ai.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/Isolateobjectblog\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"introduction_meta\",\"meta\":\"ai_get_started\"}]],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/Isolateobjectblog\"},{\"id\":\"ai-isolate-object\",\"title\":\"Sharper product images, instantly\",\"description\":\"Remove distractions and reframe your shots with the new Isolate Object tool powered by Elementor AI \\u2014 perfect for a polished, uniform Woo storefront.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/isolate-object-ai.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Start Free Trial\",\"link\":\"https:\\/\\/go.elementor.com\\/Isolateobjectblog\",\"readMoreText\":\"Learn More\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/Isolateobjectblog\"},{\"id\":\"hello-biz-contact\",\"title\":\"New Contact Widget, Visual Layout Presets & more\",\"description\":\"Hello Biz just got an update! Explore the new Contact Widget, Visual Layout Presets, Form Submissions integration, and fresh new kits.\",\"topic\":\"Hello Biz\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/hello-biz-contact.png\",\"chipTags\":[\"New Features\"],\"link\":\"https:\\/\\/go.elementor.com\\/hello-biz-updates\",\"readMoreText\":\"Learn More\"},{\"id\":\"ai-site-planner-colors\",\"title\":\"Style Your Wireframe, Speed Up Your Store Build\",\"description\":\"Site Planner now lets you style your wireframe with fonts and colors - instantly visualizing your site\\u2019s look and feel. Plus, it predesigns pages for WooCommerce like Cart and Checkout, so you can dive straight into customizations\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/site-planner-colors.png\",\"chipTags\":[\"New Feature\"],\"link\":\"http:\\/\\/www.elementor.com\\/ai-site-planner\",\"readMoreText\":\"Learn More\"},{\"id\":\"ally-notification\",\"title\":\"Just released! Ally - a new plugin for web accessibility & usability\",\"description\":\"Ally simplifies the complexities of making your website more accessible. With new regulations here and coming, making your website more usable and inclusive is no longer just an option, but a must.\",\"topic\":\"Ally by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ally-notification.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get it free\",\"ctaLink\":\"https:\\/\\/wordpress.org\\/plugins\\/pojo-accessibility\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"pojo-accessibility\\/pojo-accessibility.php\"}]]},{\"id\":\"ai-site-planner\",\"title\":\"Instant Sitemaps & Wireframes\",\"description\":\"Get your website plan in minutes with AI Site Planner. Describe your desired site and AI will generate a sitemap, brief and wireframe populated with initial content, ready for you to customize.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/aI-site-planner.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-site-planner\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"grid-span-3.27\",\"title\":\"Design Grid layouts that fit your exact vision\",\"description\":\"Advanced column and row span controls give you the power to design Grid Container layouts that fit your exact vision.\",\"topic\":\"Elementor 3.27\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/grid-span-3.27.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.27-grid-span-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"local-fonts-3.27\",\"title\":\"Load Google Fonts safer and faster\",\"description\":\"Once enabled, Google Fonts are served directly from your server, streamlining the loading process and enhancing security.\",\"topic\":\"Elementor 3.27\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/local-google-fonts-3.27.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.27-local-fonts-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"video-shorts-3.27\",\"title\":\"Showcase short-form, vertical videos\",\"description\":\"The Video widget now supports YouTube Shorts in a vertical 9:16 ratio, the go-to format for engaging audiences.\",\"topic\":\"Elementor 3.27\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/video-shorts-3.27.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.27-video-shorts-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"dynamic-off-canvas-3.26\",\"title\":\"Dynamic Off-Canvas for Loop Grids\",\"description\":\"Create richer, more interactive designs by linking Dynamic Content to the Off Canvas widget, delivering seamless user experiences.\",\"topic\":\"Elementor Pro 3.26\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/off-canvas-loop-grids.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.26-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"dynamic-off-canvas-3.26\",\"title\":\"Dynamic Off-Canvas for Loop Grids\",\"description\":\"Create richer, more interactive designs by linking Dynamic Content to the Off Canvas widget, delivering seamless user experiences.\",\"topic\":\"Elementor Pro 3.26\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/off-canvas-loop-grids.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.26-loop-off-canvas\\/\"},{\"id\":\"image-optimizer-3.19\",\"title\":\"Effortlessly optimize images for a stunning, high-speed website with the Image Optimizer plugin.\",\"description\":\"Image Optimizer perfectly balances between image quality and performance to boost your website.  Resize, compress, and convert images to WebP, for faster loading times and and better user experience.\",\"topic\":\"Image Optimizer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/image-optimizer-3.19.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get the Image Optimizer\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/io-notification-wp-dash-learn-more\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"image-optimization\\/image-optimization.php\"}]]},{\"id\":\"5-star-rating-prompt\",\"title\":\"Love the New Features? Let Us Know with 5 Stars!\",\"description\":\"Help spread the word by telling the world what you love about Elementor.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/5-star-rating-prompt.png\",\"cta\":\"Leave a Review\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/wp-dash-notification-five-stars\\/\"},{\"id\":\"site-mailer-introducing\",\"title\":\"Introducing Site Mailer\",\"description\":\"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\\u2014no need for an SMTP plugin or complicated configurations.\",\"topic\":\"Site Mailer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/Site-mailer.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/sm-wp-dash-whatsnew\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"site-mailer\\/site-mailer.php\"}]]}]\";}','off'),
(237855,'elementor_connect_site_key','f7df608ffb1a37bedfe05d9c4d87c60f','auto'),
(237856,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:79:\"Introducing Elementor 3.33: Variables Manager, Custom CSS, Blend Modes, & more!\";s:7:\"excerpt\";s:340:\"Elementor 3.33 builds on the foundation of Editor V4, continuing our mission to create a faster, more scalable, and more intuitive design experience for Web Creators. With the addition of the Variables Manager, element-level Custom CSS, Background Clipping, and Blend Modes, designers have more creative precision and consistency than ever.\";s:7:\"created\";i:1762944115;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:145:\"https://elementor.com/blog/elementor-333-v4-variables-manager-custom-css/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:76:\"Introducing Elementor 3.32: Transitions, Transform, Size Variables, and More\";s:7:\"excerpt\";s:250:\"Elementor 3.32 is here, accelerating Editor V4 Alpha with transform controls and layered transitions, system-wide Size Variables and streamlined class management. This release empowers you to build more consistent, dynamic, and professional websites.\";s:7:\"created\";i:1759243152;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:138:\"https://elementor.com/blog/elementor-332-v4-transform-transitions/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:70:\"Introducing Elementor 3.31: New Editor V4 Variables, Filters, and More\";s:7:\"excerpt\";s:294:\"Elementor 3.31 is here, pushing Editor V4 forward with powerful design system enhancements and modern visual styling tools. From Variables and Filters to smarter editing workflows and semantic markup, this version makes it easier than ever to design beautiful, performant, and accessible sites.\";s:7:\"created\";i:1755094220;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:140:\"https://elementor.com/blog/elementor-331-v4-alpha-variables-filters/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','off'),
(237863,'jevelin_license','3063d54e-e507-4998-ad07-c71338252493','auto'),
(237895,'auto_update_redux_google_fonts','1','auto'),
(239427,'elementor_log','a:10:{s:32:\"2628ea52a9698749058ddcae67b18d11\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-09-30 08:54:35\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.32.2\";s:2:\"to\";s:6:\"3.32.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-09-30 08:54:35\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.32.2\";s:2:\"to\";s:6:\"3.32.3\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"cfa5d045c7946dc8d33bc69d38ab14ab\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-09-30 08:54:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-09-30 08:54:36\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"e2419391d1572de7265bc090c4975a7b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-09-30 08:54:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-09-30 08:54:36\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"67b0bb162b61854cf4e94393f1d6c72c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-09-30 08:54:36\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-09-30 08:54:36\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"df950dc7a1b3dbcd74e5353e3938faba\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-09-30 08:54:36\";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.32.2\";s:2:\"to\";s:6:\"3.32.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-09-30 08:54:36\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.32.2\";s:2:\"to\";s:6:\"3.32.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"cf4f5db56649f803f69934700a5fb911\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-09-30 08:54:37\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.32.2\";s:2:\"to\";s:6:\"3.32.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-09-30 08:54:37\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.32.2\";s:2:\"to\";s:6:\"3.32.3\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"1edf2678ae7f3851241ca1a759186ff7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-01-05 20:32:57\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-01-05 20:32:57\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"502cbf5df85ad4b81ddf531a66747d72\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-01-05 20:32:57\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-01-05 20:32:57\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"404a1c01136997c4a68a810640e2bff9\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-01-05 20:32:57\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-01-05 20:32:57\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"1122d3379e6c6f0bfd17e68259fdceb5\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-01-05 20:32:57\";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.32.3\";s:2:\"to\";s:6:\"3.34.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-01-05 20:32:57\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.32.3\";s:2:\"to\";s:6:\"3.34.0\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}}','off'),
(256266,'wp_notes_notify','1','on'),
(256267,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.9.1\";s:5:\"files\";a:584:{i:0;s:31:\"accordion-heading/style-rtl.css\";i:1;s:35:\"accordion-heading/style-rtl.min.css\";i:2;s:27:\"accordion-heading/style.css\";i:3;s:31:\"accordion-heading/style.min.css\";i:4;s:28:\"accordion-item/style-rtl.css\";i:5;s:32:\"accordion-item/style-rtl.min.css\";i:6;s:24:\"accordion-item/style.css\";i:7;s:28:\"accordion-item/style.min.css\";i:8;s:29:\"accordion-panel/style-rtl.css\";i:9;s:33:\"accordion-panel/style-rtl.min.css\";i:10;s:25:\"accordion-panel/style.css\";i:11;s:29:\"accordion-panel/style.min.css\";i:12;s:23:\"accordion/style-rtl.css\";i:13;s:27:\"accordion/style-rtl.min.css\";i:14;s:19:\"accordion/style.css\";i:15;s:23:\"accordion/style.min.css\";i:16;s:23:\"archives/editor-rtl.css\";i:17;s:27:\"archives/editor-rtl.min.css\";i:18;s:19:\"archives/editor.css\";i:19;s:23:\"archives/editor.min.css\";i:20;s:22:\"archives/style-rtl.css\";i:21;s:26:\"archives/style-rtl.min.css\";i:22;s:18:\"archives/style.css\";i:23;s:22:\"archives/style.min.css\";i:24;s:20:\"audio/editor-rtl.css\";i:25;s:24:\"audio/editor-rtl.min.css\";i:26;s:16:\"audio/editor.css\";i:27;s:20:\"audio/editor.min.css\";i:28;s:19:\"audio/style-rtl.css\";i:29;s:23:\"audio/style-rtl.min.css\";i:30;s:15:\"audio/style.css\";i:31;s:19:\"audio/style.min.css\";i:32;s:19:\"audio/theme-rtl.css\";i:33;s:23:\"audio/theme-rtl.min.css\";i:34;s:15:\"audio/theme.css\";i:35;s:19:\"audio/theme.min.css\";i:36;s:21:\"avatar/editor-rtl.css\";i:37;s:25:\"avatar/editor-rtl.min.css\";i:38;s:17:\"avatar/editor.css\";i:39;s:21:\"avatar/editor.min.css\";i:40;s:20:\"avatar/style-rtl.css\";i:41;s:24:\"avatar/style-rtl.min.css\";i:42;s:16:\"avatar/style.css\";i:43;s:20:\"avatar/style.min.css\";i:44;s:21:\"button/editor-rtl.css\";i:45;s:25:\"button/editor-rtl.min.css\";i:46;s:17:\"button/editor.css\";i:47;s:21:\"button/editor.min.css\";i:48;s:20:\"button/style-rtl.css\";i:49;s:24:\"button/style-rtl.min.css\";i:50;s:16:\"button/style.css\";i:51;s:20:\"button/style.min.css\";i:52;s:22:\"buttons/editor-rtl.css\";i:53;s:26:\"buttons/editor-rtl.min.css\";i:54;s:18:\"buttons/editor.css\";i:55;s:22:\"buttons/editor.min.css\";i:56;s:21:\"buttons/style-rtl.css\";i:57;s:25:\"buttons/style-rtl.min.css\";i:58;s:17:\"buttons/style.css\";i:59;s:21:\"buttons/style.min.css\";i:60;s:22:\"calendar/style-rtl.css\";i:61;s:26:\"calendar/style-rtl.min.css\";i:62;s:18:\"calendar/style.css\";i:63;s:22:\"calendar/style.min.css\";i:64;s:25:\"categories/editor-rtl.css\";i:65;s:29:\"categories/editor-rtl.min.css\";i:66;s:21:\"categories/editor.css\";i:67;s:25:\"categories/editor.min.css\";i:68;s:24:\"categories/style-rtl.css\";i:69;s:28:\"categories/style-rtl.min.css\";i:70;s:20:\"categories/style.css\";i:71;s:24:\"categories/style.min.css\";i:72;s:19:\"code/editor-rtl.css\";i:73;s:23:\"code/editor-rtl.min.css\";i:74;s:15:\"code/editor.css\";i:75;s:19:\"code/editor.min.css\";i:76;s:18:\"code/style-rtl.css\";i:77;s:22:\"code/style-rtl.min.css\";i:78;s:14:\"code/style.css\";i:79;s:18:\"code/style.min.css\";i:80;s:18:\"code/theme-rtl.css\";i:81;s:22:\"code/theme-rtl.min.css\";i:82;s:14:\"code/theme.css\";i:83;s:18:\"code/theme.min.css\";i:84;s:22:\"columns/editor-rtl.css\";i:85;s:26:\"columns/editor-rtl.min.css\";i:86;s:18:\"columns/editor.css\";i:87;s:22:\"columns/editor.min.css\";i:88;s:21:\"columns/style-rtl.css\";i:89;s:25:\"columns/style-rtl.min.css\";i:90;s:17:\"columns/style.css\";i:91;s:21:\"columns/style.min.css\";i:92;s:33:\"comment-author-name/style-rtl.css\";i:93;s:37:\"comment-author-name/style-rtl.min.css\";i:94;s:29:\"comment-author-name/style.css\";i:95;s:33:\"comment-author-name/style.min.css\";i:96;s:29:\"comment-content/style-rtl.css\";i:97;s:33:\"comment-content/style-rtl.min.css\";i:98;s:25:\"comment-content/style.css\";i:99;s:29:\"comment-content/style.min.css\";i:100;s:26:\"comment-date/style-rtl.css\";i:101;s:30:\"comment-date/style-rtl.min.css\";i:102;s:22:\"comment-date/style.css\";i:103;s:26:\"comment-date/style.min.css\";i:104;s:31:\"comment-edit-link/style-rtl.css\";i:105;s:35:\"comment-edit-link/style-rtl.min.css\";i:106;s:27:\"comment-edit-link/style.css\";i:107;s:31:\"comment-edit-link/style.min.css\";i:108;s:32:\"comment-reply-link/style-rtl.css\";i:109;s:36:\"comment-reply-link/style-rtl.min.css\";i:110;s:28:\"comment-reply-link/style.css\";i:111;s:32:\"comment-reply-link/style.min.css\";i:112;s:30:\"comment-template/style-rtl.css\";i:113;s:34:\"comment-template/style-rtl.min.css\";i:114;s:26:\"comment-template/style.css\";i:115;s:30:\"comment-template/style.min.css\";i:116;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:117;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:118;s:38:\"comments-pagination-numbers/editor.css\";i:119;s:42:\"comments-pagination-numbers/editor.min.css\";i:120;s:34:\"comments-pagination/editor-rtl.css\";i:121;s:38:\"comments-pagination/editor-rtl.min.css\";i:122;s:30:\"comments-pagination/editor.css\";i:123;s:34:\"comments-pagination/editor.min.css\";i:124;s:33:\"comments-pagination/style-rtl.css\";i:125;s:37:\"comments-pagination/style-rtl.min.css\";i:126;s:29:\"comments-pagination/style.css\";i:127;s:33:\"comments-pagination/style.min.css\";i:128;s:29:\"comments-title/editor-rtl.css\";i:129;s:33:\"comments-title/editor-rtl.min.css\";i:130;s:25:\"comments-title/editor.css\";i:131;s:29:\"comments-title/editor.min.css\";i:132;s:23:\"comments/editor-rtl.css\";i:133;s:27:\"comments/editor-rtl.min.css\";i:134;s:19:\"comments/editor.css\";i:135;s:23:\"comments/editor.min.css\";i:136;s:22:\"comments/style-rtl.css\";i:137;s:26:\"comments/style-rtl.min.css\";i:138;s:18:\"comments/style.css\";i:139;s:22:\"comments/style.min.css\";i:140;s:20:\"cover/editor-rtl.css\";i:141;s:24:\"cover/editor-rtl.min.css\";i:142;s:16:\"cover/editor.css\";i:143;s:20:\"cover/editor.min.css\";i:144;s:19:\"cover/style-rtl.css\";i:145;s:23:\"cover/style-rtl.min.css\";i:146;s:15:\"cover/style.css\";i:147;s:19:\"cover/style.min.css\";i:148;s:22:\"details/editor-rtl.css\";i:149;s:26:\"details/editor-rtl.min.css\";i:150;s:18:\"details/editor.css\";i:151;s:22:\"details/editor.min.css\";i:152;s:21:\"details/style-rtl.css\";i:153;s:25:\"details/style-rtl.min.css\";i:154;s:17:\"details/style.css\";i:155;s:21:\"details/style.min.css\";i:156;s:20:\"embed/editor-rtl.css\";i:157;s:24:\"embed/editor-rtl.min.css\";i:158;s:16:\"embed/editor.css\";i:159;s:20:\"embed/editor.min.css\";i:160;s:19:\"embed/style-rtl.css\";i:161;s:23:\"embed/style-rtl.min.css\";i:162;s:15:\"embed/style.css\";i:163;s:19:\"embed/style.min.css\";i:164;s:19:\"embed/theme-rtl.css\";i:165;s:23:\"embed/theme-rtl.min.css\";i:166;s:15:\"embed/theme.css\";i:167;s:19:\"embed/theme.min.css\";i:168;s:19:\"file/editor-rtl.css\";i:169;s:23:\"file/editor-rtl.min.css\";i:170;s:15:\"file/editor.css\";i:171;s:19:\"file/editor.min.css\";i:172;s:18:\"file/style-rtl.css\";i:173;s:22:\"file/style-rtl.min.css\";i:174;s:14:\"file/style.css\";i:175;s:18:\"file/style.min.css\";i:176;s:23:\"footnotes/style-rtl.css\";i:177;s:27:\"footnotes/style-rtl.min.css\";i:178;s:19:\"footnotes/style.css\";i:179;s:23:\"footnotes/style.min.css\";i:180;s:23:\"freeform/editor-rtl.css\";i:181;s:27:\"freeform/editor-rtl.min.css\";i:182;s:19:\"freeform/editor.css\";i:183;s:23:\"freeform/editor.min.css\";i:184;s:22:\"gallery/editor-rtl.css\";i:185;s:26:\"gallery/editor-rtl.min.css\";i:186;s:18:\"gallery/editor.css\";i:187;s:22:\"gallery/editor.min.css\";i:188;s:21:\"gallery/style-rtl.css\";i:189;s:25:\"gallery/style-rtl.min.css\";i:190;s:17:\"gallery/style.css\";i:191;s:21:\"gallery/style.min.css\";i:192;s:21:\"gallery/theme-rtl.css\";i:193;s:25:\"gallery/theme-rtl.min.css\";i:194;s:17:\"gallery/theme.css\";i:195;s:21:\"gallery/theme.min.css\";i:196;s:20:\"group/editor-rtl.css\";i:197;s:24:\"group/editor-rtl.min.css\";i:198;s:16:\"group/editor.css\";i:199;s:20:\"group/editor.min.css\";i:200;s:19:\"group/style-rtl.css\";i:201;s:23:\"group/style-rtl.min.css\";i:202;s:15:\"group/style.css\";i:203;s:19:\"group/style.min.css\";i:204;s:19:\"group/theme-rtl.css\";i:205;s:23:\"group/theme-rtl.min.css\";i:206;s:15:\"group/theme.css\";i:207;s:19:\"group/theme.min.css\";i:208;s:21:\"heading/style-rtl.css\";i:209;s:25:\"heading/style-rtl.min.css\";i:210;s:17:\"heading/style.css\";i:211;s:21:\"heading/style.min.css\";i:212;s:19:\"html/editor-rtl.css\";i:213;s:23:\"html/editor-rtl.min.css\";i:214;s:15:\"html/editor.css\";i:215;s:19:\"html/editor.min.css\";i:216;s:20:\"image/editor-rtl.css\";i:217;s:24:\"image/editor-rtl.min.css\";i:218;s:16:\"image/editor.css\";i:219;s:20:\"image/editor.min.css\";i:220;s:19:\"image/style-rtl.css\";i:221;s:23:\"image/style-rtl.min.css\";i:222;s:15:\"image/style.css\";i:223;s:19:\"image/style.min.css\";i:224;s:19:\"image/theme-rtl.css\";i:225;s:23:\"image/theme-rtl.min.css\";i:226;s:15:\"image/theme.css\";i:227;s:19:\"image/theme.min.css\";i:228;s:29:\"latest-comments/style-rtl.css\";i:229;s:33:\"latest-comments/style-rtl.min.css\";i:230;s:25:\"latest-comments/style.css\";i:231;s:29:\"latest-comments/style.min.css\";i:232;s:27:\"latest-posts/editor-rtl.css\";i:233;s:31:\"latest-posts/editor-rtl.min.css\";i:234;s:23:\"latest-posts/editor.css\";i:235;s:27:\"latest-posts/editor.min.css\";i:236;s:26:\"latest-posts/style-rtl.css\";i:237;s:30:\"latest-posts/style-rtl.min.css\";i:238;s:22:\"latest-posts/style.css\";i:239;s:26:\"latest-posts/style.min.css\";i:240;s:18:\"list/style-rtl.css\";i:241;s:22:\"list/style-rtl.min.css\";i:242;s:14:\"list/style.css\";i:243;s:18:\"list/style.min.css\";i:244;s:22:\"loginout/style-rtl.css\";i:245;s:26:\"loginout/style-rtl.min.css\";i:246;s:18:\"loginout/style.css\";i:247;s:22:\"loginout/style.min.css\";i:248;s:19:\"math/editor-rtl.css\";i:249;s:23:\"math/editor-rtl.min.css\";i:250;s:15:\"math/editor.css\";i:251;s:19:\"math/editor.min.css\";i:252;s:18:\"math/style-rtl.css\";i:253;s:22:\"math/style-rtl.min.css\";i:254;s:14:\"math/style.css\";i:255;s:18:\"math/style.min.css\";i:256;s:25:\"media-text/editor-rtl.css\";i:257;s:29:\"media-text/editor-rtl.min.css\";i:258;s:21:\"media-text/editor.css\";i:259;s:25:\"media-text/editor.min.css\";i:260;s:24:\"media-text/style-rtl.css\";i:261;s:28:\"media-text/style-rtl.min.css\";i:262;s:20:\"media-text/style.css\";i:263;s:24:\"media-text/style.min.css\";i:264;s:19:\"more/editor-rtl.css\";i:265;s:23:\"more/editor-rtl.min.css\";i:266;s:15:\"more/editor.css\";i:267;s:19:\"more/editor.min.css\";i:268;s:30:\"navigation-link/editor-rtl.css\";i:269;s:34:\"navigation-link/editor-rtl.min.css\";i:270;s:26:\"navigation-link/editor.css\";i:271;s:30:\"navigation-link/editor.min.css\";i:272;s:29:\"navigation-link/style-rtl.css\";i:273;s:33:\"navigation-link/style-rtl.min.css\";i:274;s:25:\"navigation-link/style.css\";i:275;s:29:\"navigation-link/style.min.css\";i:276;s:33:\"navigation-submenu/editor-rtl.css\";i:277;s:37:\"navigation-submenu/editor-rtl.min.css\";i:278;s:29:\"navigation-submenu/editor.css\";i:279;s:33:\"navigation-submenu/editor.min.css\";i:280;s:25:\"navigation/editor-rtl.css\";i:281;s:29:\"navigation/editor-rtl.min.css\";i:282;s:21:\"navigation/editor.css\";i:283;s:25:\"navigation/editor.min.css\";i:284;s:24:\"navigation/style-rtl.css\";i:285;s:28:\"navigation/style-rtl.min.css\";i:286;s:20:\"navigation/style.css\";i:287;s:24:\"navigation/style.min.css\";i:288;s:23:\"nextpage/editor-rtl.css\";i:289;s:27:\"nextpage/editor-rtl.min.css\";i:290;s:19:\"nextpage/editor.css\";i:291;s:23:\"nextpage/editor.min.css\";i:292;s:24:\"page-list/editor-rtl.css\";i:293;s:28:\"page-list/editor-rtl.min.css\";i:294;s:20:\"page-list/editor.css\";i:295;s:24:\"page-list/editor.min.css\";i:296;s:23:\"page-list/style-rtl.css\";i:297;s:27:\"page-list/style-rtl.min.css\";i:298;s:19:\"page-list/style.css\";i:299;s:23:\"page-list/style.min.css\";i:300;s:24:\"paragraph/editor-rtl.css\";i:301;s:28:\"paragraph/editor-rtl.min.css\";i:302;s:20:\"paragraph/editor.css\";i:303;s:24:\"paragraph/editor.min.css\";i:304;s:23:\"paragraph/style-rtl.css\";i:305;s:27:\"paragraph/style-rtl.min.css\";i:306;s:19:\"paragraph/style.css\";i:307;s:23:\"paragraph/style.min.css\";i:308;s:35:\"post-author-biography/style-rtl.css\";i:309;s:39:\"post-author-biography/style-rtl.min.css\";i:310;s:31:\"post-author-biography/style.css\";i:311;s:35:\"post-author-biography/style.min.css\";i:312;s:30:\"post-author-name/style-rtl.css\";i:313;s:34:\"post-author-name/style-rtl.min.css\";i:314;s:26:\"post-author-name/style.css\";i:315;s:30:\"post-author-name/style.min.css\";i:316;s:25:\"post-author/style-rtl.css\";i:317;s:29:\"post-author/style-rtl.min.css\";i:318;s:21:\"post-author/style.css\";i:319;s:25:\"post-author/style.min.css\";i:320;s:33:\"post-comments-count/style-rtl.css\";i:321;s:37:\"post-comments-count/style-rtl.min.css\";i:322;s:29:\"post-comments-count/style.css\";i:323;s:33:\"post-comments-count/style.min.css\";i:324;s:33:\"post-comments-form/editor-rtl.css\";i:325;s:37:\"post-comments-form/editor-rtl.min.css\";i:326;s:29:\"post-comments-form/editor.css\";i:327;s:33:\"post-comments-form/editor.min.css\";i:328;s:32:\"post-comments-form/style-rtl.css\";i:329;s:36:\"post-comments-form/style-rtl.min.css\";i:330;s:28:\"post-comments-form/style.css\";i:331;s:32:\"post-comments-form/style.min.css\";i:332;s:32:\"post-comments-link/style-rtl.css\";i:333;s:36:\"post-comments-link/style-rtl.min.css\";i:334;s:28:\"post-comments-link/style.css\";i:335;s:32:\"post-comments-link/style.min.css\";i:336;s:26:\"post-content/style-rtl.css\";i:337;s:30:\"post-content/style-rtl.min.css\";i:338;s:22:\"post-content/style.css\";i:339;s:26:\"post-content/style.min.css\";i:340;s:23:\"post-date/style-rtl.css\";i:341;s:27:\"post-date/style-rtl.min.css\";i:342;s:19:\"post-date/style.css\";i:343;s:23:\"post-date/style.min.css\";i:344;s:27:\"post-excerpt/editor-rtl.css\";i:345;s:31:\"post-excerpt/editor-rtl.min.css\";i:346;s:23:\"post-excerpt/editor.css\";i:347;s:27:\"post-excerpt/editor.min.css\";i:348;s:26:\"post-excerpt/style-rtl.css\";i:349;s:30:\"post-excerpt/style-rtl.min.css\";i:350;s:22:\"post-excerpt/style.css\";i:351;s:26:\"post-excerpt/style.min.css\";i:352;s:34:\"post-featured-image/editor-rtl.css\";i:353;s:38:\"post-featured-image/editor-rtl.min.css\";i:354;s:30:\"post-featured-image/editor.css\";i:355;s:34:\"post-featured-image/editor.min.css\";i:356;s:33:\"post-featured-image/style-rtl.css\";i:357;s:37:\"post-featured-image/style-rtl.min.css\";i:358;s:29:\"post-featured-image/style.css\";i:359;s:33:\"post-featured-image/style.min.css\";i:360;s:34:\"post-navigation-link/style-rtl.css\";i:361;s:38:\"post-navigation-link/style-rtl.min.css\";i:362;s:30:\"post-navigation-link/style.css\";i:363;s:34:\"post-navigation-link/style.min.css\";i:364;s:27:\"post-template/style-rtl.css\";i:365;s:31:\"post-template/style-rtl.min.css\";i:366;s:23:\"post-template/style.css\";i:367;s:27:\"post-template/style.min.css\";i:368;s:24:\"post-terms/style-rtl.css\";i:369;s:28:\"post-terms/style-rtl.min.css\";i:370;s:20:\"post-terms/style.css\";i:371;s:24:\"post-terms/style.min.css\";i:372;s:31:\"post-time-to-read/style-rtl.css\";i:373;s:35:\"post-time-to-read/style-rtl.min.css\";i:374;s:27:\"post-time-to-read/style.css\";i:375;s:31:\"post-time-to-read/style.min.css\";i:376;s:24:\"post-title/style-rtl.css\";i:377;s:28:\"post-title/style-rtl.min.css\";i:378;s:20:\"post-title/style.css\";i:379;s:24:\"post-title/style.min.css\";i:380;s:26:\"preformatted/style-rtl.css\";i:381;s:30:\"preformatted/style-rtl.min.css\";i:382;s:22:\"preformatted/style.css\";i:383;s:26:\"preformatted/style.min.css\";i:384;s:24:\"pullquote/editor-rtl.css\";i:385;s:28:\"pullquote/editor-rtl.min.css\";i:386;s:20:\"pullquote/editor.css\";i:387;s:24:\"pullquote/editor.min.css\";i:388;s:23:\"pullquote/style-rtl.css\";i:389;s:27:\"pullquote/style-rtl.min.css\";i:390;s:19:\"pullquote/style.css\";i:391;s:23:\"pullquote/style.min.css\";i:392;s:23:\"pullquote/theme-rtl.css\";i:393;s:27:\"pullquote/theme-rtl.min.css\";i:394;s:19:\"pullquote/theme.css\";i:395;s:23:\"pullquote/theme.min.css\";i:396;s:39:\"query-pagination-numbers/editor-rtl.css\";i:397;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:398;s:35:\"query-pagination-numbers/editor.css\";i:399;s:39:\"query-pagination-numbers/editor.min.css\";i:400;s:31:\"query-pagination/editor-rtl.css\";i:401;s:35:\"query-pagination/editor-rtl.min.css\";i:402;s:27:\"query-pagination/editor.css\";i:403;s:31:\"query-pagination/editor.min.css\";i:404;s:30:\"query-pagination/style-rtl.css\";i:405;s:34:\"query-pagination/style-rtl.min.css\";i:406;s:26:\"query-pagination/style.css\";i:407;s:30:\"query-pagination/style.min.css\";i:408;s:25:\"query-title/style-rtl.css\";i:409;s:29:\"query-title/style-rtl.min.css\";i:410;s:21:\"query-title/style.css\";i:411;s:25:\"query-title/style.min.css\";i:412;s:25:\"query-total/style-rtl.css\";i:413;s:29:\"query-total/style-rtl.min.css\";i:414;s:21:\"query-total/style.css\";i:415;s:25:\"query-total/style.min.css\";i:416;s:20:\"query/editor-rtl.css\";i:417;s:24:\"query/editor-rtl.min.css\";i:418;s:16:\"query/editor.css\";i:419;s:20:\"query/editor.min.css\";i:420;s:19:\"quote/style-rtl.css\";i:421;s:23:\"quote/style-rtl.min.css\";i:422;s:15:\"quote/style.css\";i:423;s:19:\"quote/style.min.css\";i:424;s:19:\"quote/theme-rtl.css\";i:425;s:23:\"quote/theme-rtl.min.css\";i:426;s:15:\"quote/theme.css\";i:427;s:19:\"quote/theme.min.css\";i:428;s:23:\"read-more/style-rtl.css\";i:429;s:27:\"read-more/style-rtl.min.css\";i:430;s:19:\"read-more/style.css\";i:431;s:23:\"read-more/style.min.css\";i:432;s:18:\"rss/editor-rtl.css\";i:433;s:22:\"rss/editor-rtl.min.css\";i:434;s:14:\"rss/editor.css\";i:435;s:18:\"rss/editor.min.css\";i:436;s:17:\"rss/style-rtl.css\";i:437;s:21:\"rss/style-rtl.min.css\";i:438;s:13:\"rss/style.css\";i:439;s:17:\"rss/style.min.css\";i:440;s:21:\"search/editor-rtl.css\";i:441;s:25:\"search/editor-rtl.min.css\";i:442;s:17:\"search/editor.css\";i:443;s:21:\"search/editor.min.css\";i:444;s:20:\"search/style-rtl.css\";i:445;s:24:\"search/style-rtl.min.css\";i:446;s:16:\"search/style.css\";i:447;s:20:\"search/style.min.css\";i:448;s:20:\"search/theme-rtl.css\";i:449;s:24:\"search/theme-rtl.min.css\";i:450;s:16:\"search/theme.css\";i:451;s:20:\"search/theme.min.css\";i:452;s:24:\"separator/editor-rtl.css\";i:453;s:28:\"separator/editor-rtl.min.css\";i:454;s:20:\"separator/editor.css\";i:455;s:24:\"separator/editor.min.css\";i:456;s:23:\"separator/style-rtl.css\";i:457;s:27:\"separator/style-rtl.min.css\";i:458;s:19:\"separator/style.css\";i:459;s:23:\"separator/style.min.css\";i:460;s:23:\"separator/theme-rtl.css\";i:461;s:27:\"separator/theme-rtl.min.css\";i:462;s:19:\"separator/theme.css\";i:463;s:23:\"separator/theme.min.css\";i:464;s:24:\"shortcode/editor-rtl.css\";i:465;s:28:\"shortcode/editor-rtl.min.css\";i:466;s:20:\"shortcode/editor.css\";i:467;s:24:\"shortcode/editor.min.css\";i:468;s:24:\"site-logo/editor-rtl.css\";i:469;s:28:\"site-logo/editor-rtl.min.css\";i:470;s:20:\"site-logo/editor.css\";i:471;s:24:\"site-logo/editor.min.css\";i:472;s:23:\"site-logo/style-rtl.css\";i:473;s:27:\"site-logo/style-rtl.min.css\";i:474;s:19:\"site-logo/style.css\";i:475;s:23:\"site-logo/style.min.css\";i:476;s:27:\"site-tagline/editor-rtl.css\";i:477;s:31:\"site-tagline/editor-rtl.min.css\";i:478;s:23:\"site-tagline/editor.css\";i:479;s:27:\"site-tagline/editor.min.css\";i:480;s:26:\"site-tagline/style-rtl.css\";i:481;s:30:\"site-tagline/style-rtl.min.css\";i:482;s:22:\"site-tagline/style.css\";i:483;s:26:\"site-tagline/style.min.css\";i:484;s:25:\"site-title/editor-rtl.css\";i:485;s:29:\"site-title/editor-rtl.min.css\";i:486;s:21:\"site-title/editor.css\";i:487;s:25:\"site-title/editor.min.css\";i:488;s:24:\"site-title/style-rtl.css\";i:489;s:28:\"site-title/style-rtl.min.css\";i:490;s:20:\"site-title/style.css\";i:491;s:24:\"site-title/style.min.css\";i:492;s:26:\"social-link/editor-rtl.css\";i:493;s:30:\"social-link/editor-rtl.min.css\";i:494;s:22:\"social-link/editor.css\";i:495;s:26:\"social-link/editor.min.css\";i:496;s:27:\"social-links/editor-rtl.css\";i:497;s:31:\"social-links/editor-rtl.min.css\";i:498;s:23:\"social-links/editor.css\";i:499;s:27:\"social-links/editor.min.css\";i:500;s:26:\"social-links/style-rtl.css\";i:501;s:30:\"social-links/style-rtl.min.css\";i:502;s:22:\"social-links/style.css\";i:503;s:26:\"social-links/style.min.css\";i:504;s:21:\"spacer/editor-rtl.css\";i:505;s:25:\"spacer/editor-rtl.min.css\";i:506;s:17:\"spacer/editor.css\";i:507;s:21:\"spacer/editor.min.css\";i:508;s:20:\"spacer/style-rtl.css\";i:509;s:24:\"spacer/style-rtl.min.css\";i:510;s:16:\"spacer/style.css\";i:511;s:20:\"spacer/style.min.css\";i:512;s:20:\"table/editor-rtl.css\";i:513;s:24:\"table/editor-rtl.min.css\";i:514;s:16:\"table/editor.css\";i:515;s:20:\"table/editor.min.css\";i:516;s:19:\"table/style-rtl.css\";i:517;s:23:\"table/style-rtl.min.css\";i:518;s:15:\"table/style.css\";i:519;s:19:\"table/style.min.css\";i:520;s:19:\"table/theme-rtl.css\";i:521;s:23:\"table/theme-rtl.min.css\";i:522;s:15:\"table/theme.css\";i:523;s:19:\"table/theme.min.css\";i:524;s:24:\"tag-cloud/editor-rtl.css\";i:525;s:28:\"tag-cloud/editor-rtl.min.css\";i:526;s:20:\"tag-cloud/editor.css\";i:527;s:24:\"tag-cloud/editor.min.css\";i:528;s:23:\"tag-cloud/style-rtl.css\";i:529;s:27:\"tag-cloud/style-rtl.min.css\";i:530;s:19:\"tag-cloud/style.css\";i:531;s:23:\"tag-cloud/style.min.css\";i:532;s:28:\"template-part/editor-rtl.css\";i:533;s:32:\"template-part/editor-rtl.min.css\";i:534;s:24:\"template-part/editor.css\";i:535;s:28:\"template-part/editor.min.css\";i:536;s:27:\"template-part/theme-rtl.css\";i:537;s:31:\"template-part/theme-rtl.min.css\";i:538;s:23:\"template-part/theme.css\";i:539;s:27:\"template-part/theme.min.css\";i:540;s:24:\"term-count/style-rtl.css\";i:541;s:28:\"term-count/style-rtl.min.css\";i:542;s:20:\"term-count/style.css\";i:543;s:24:\"term-count/style.min.css\";i:544;s:30:\"term-description/style-rtl.css\";i:545;s:34:\"term-description/style-rtl.min.css\";i:546;s:26:\"term-description/style.css\";i:547;s:30:\"term-description/style.min.css\";i:548;s:23:\"term-name/style-rtl.css\";i:549;s:27:\"term-name/style-rtl.min.css\";i:550;s:19:\"term-name/style.css\";i:551;s:23:\"term-name/style.min.css\";i:552;s:28:\"term-template/editor-rtl.css\";i:553;s:32:\"term-template/editor-rtl.min.css\";i:554;s:24:\"term-template/editor.css\";i:555;s:28:\"term-template/editor.min.css\";i:556;s:27:\"term-template/style-rtl.css\";i:557;s:31:\"term-template/style-rtl.min.css\";i:558;s:23:\"term-template/style.css\";i:559;s:27:\"term-template/style.min.css\";i:560;s:27:\"text-columns/editor-rtl.css\";i:561;s:31:\"text-columns/editor-rtl.min.css\";i:562;s:23:\"text-columns/editor.css\";i:563;s:27:\"text-columns/editor.min.css\";i:564;s:26:\"text-columns/style-rtl.css\";i:565;s:30:\"text-columns/style-rtl.min.css\";i:566;s:22:\"text-columns/style.css\";i:567;s:26:\"text-columns/style.min.css\";i:568;s:19:\"verse/style-rtl.css\";i:569;s:23:\"verse/style-rtl.min.css\";i:570;s:15:\"verse/style.css\";i:571;s:19:\"verse/style.min.css\";i:572;s:20:\"video/editor-rtl.css\";i:573;s:24:\"video/editor-rtl.min.css\";i:574;s:16:\"video/editor.css\";i:575;s:20:\"video/editor.min.css\";i:576;s:19:\"video/style-rtl.css\";i:577;s:23:\"video/style-rtl.min.css\";i:578;s:15:\"video/style.css\";i:579;s:19:\"video/style.min.css\";i:580;s:19:\"video/theme-rtl.css\";i:581;s:23:\"video/theme-rtl.min.css\";i:582;s:15:\"video/theme.css\";i:583;s:19:\"video/theme.min.css\";}}','on'),
(259333,'litespeed.conf._version','7.7','auto'),
(263225,'can_compress_scripts','1','on'),
(263246,'wpb_element_teasers_data','a:8:{i:0;a:6:{s:2:\"id\";s:10:\"templatera\";s:4:\"name\";s:10:\"Templatera\";s:11:\"description\";s:68:\"Create global templates to update multiple instances from one place.\";s:8:\"icon_url\";s:89:\"https://s3.us-west-2.amazonaws.com/cdn.wpbakery.com/teasers/templatera-ico.1759390393.svg\";s:14:\"learn_more_url\";s:135:\"https://wpbakery.com/addons/templatera/?utm_source=wpb-plugin&utm_medium=wpb-add-element&utm_campaign=wpb-teaser&utm_content=templatera\";s:11:\"plugin_slug\";s:25:\"templatera/templatera.php\";}i:1;a:6:{s:2:\"id\";s:11:\"easy-tables\";s:4:\"name\";s:11:\"Easy Tables\";s:11:\"description\";s:48:\"Create tables for your WordPress site with ease.\";s:8:\"icon_url\";s:90:\"https://s3.us-west-2.amazonaws.com/cdn.wpbakery.com/teasers/easy-tables-ico.1759390492.svg\";s:14:\"learn_more_url\";s:137:\"https://wpbakery.com/addons/easy-tables/?utm_source=wpb-plugin&utm_medium=wpb-add-element&utm_campaign=wpb-teaser&utm_content=easy-tables\";s:11:\"plugin_slug\";s:35:\"easy-tables-vc/vc-table-manager.php\";}i:2;a:6:{s:2:\"id\";s:12:\"wpdatatables\";s:4:\"name\";s:12:\"wpDataTables\";s:11:\"description\";s:80:\"One of the most popular WordPress plugins for easy, code-free tables and charts.\";s:8:\"icon_url\";s:91:\"https://s3.us-west-2.amazonaws.com/cdn.wpbakery.com/teasers/wpdatatables-ico.1759741271.png\";s:14:\"learn_more_url\";s:33:\"https://tms-plugins.sjv.io/N9aLQN\";s:11:\"plugin_slug\";s:29:\"wpdatatables/wpdatatables.php\";}i:3;a:6:{s:2:\"id\";s:6:\"amelia\";s:4:\"name\";s:14:\"Amelia Booking\";s:11:\"description\";s:81:\"A powerful and feature-rich WordPress booking plugin for appointments and events.\";s:8:\"icon_url\";s:85:\"https://s3.us-west-2.amazonaws.com/cdn.wpbakery.com/teasers/amelia-ico.1759741346.png\";s:14:\"learn_more_url\";s:33:\"https://tms-plugins.sjv.io/Wyo54n\";s:11:\"plugin_slug\";s:31:\"ameliabooking/ameliabooking.php\";}i:4;a:6:{s:2:\"id\";s:10:\"patchstack\";s:4:\"name\";s:10:\"Patchstack\";s:11:\"description\";s:73:\"The fastest and smartest vulnerability mitigation for WordPress websites.\";s:8:\"icon_url\";s:89:\"https://s3.us-west-2.amazonaws.com/cdn.wpbakery.com/teasers/patchstack-ico.1760002013.png\";s:14:\"learn_more_url\";s:25:\"https://fas.st/t/ZQPSRHxA\";s:11:\"plugin_slug\";s:25:\"patchstack/patchstack.php\";}i:5;a:6:{s:2:\"id\";s:11:\"dynamic-ooo\";s:4:\"name\";s:11:\"Dynamic OOO\";s:11:\"description\";s:86:\"Introduces an era of hassle-free, dynamic content management for your WordPress sites.\";s:8:\"icon_url\";s:90:\"https://s3.us-west-2.amazonaws.com/cdn.wpbakery.com/teasers/dynamic-ooo-ico.1759414457.png\";s:14:\"learn_more_url\";s:50:\"https://www.dynamic.ooo/dynamic-shortcodes?ref=725\";s:11:\"plugin_slug\";s:41:\"dynamic-shortcodes/dynamic-shortcodes.php\";}i:6;a:6:{s:2:\"id\";s:14:\"translatepress\";s:4:\"name\";s:14:\"TranslatePress\";s:11:\"description\";s:76:\"A better way of translating your WordPress site directly from the front-end.\";s:8:\"icon_url\";s:100:\"https://s3.us-west-2.amazonaws.com/cdn.wpbakery.com/teasers/translatepress-plugin-ico.1760440172.svg\";s:14:\"learn_more_url\";s:35:\"https://translatepress.com/?ref=712\";s:11:\"plugin_slug\";s:37:\"translatepress-multilingual/index.php\";}i:7;a:6:{s:2:\"id\";s:9:\"nitropack\";s:4:\"name\";s:9:\"NitroPack\";s:11:\"description\";s:61:\"The leading site speed and performance solution for WordPress\";s:8:\"icon_url\";s:88:\"https://s3.us-west-2.amazonaws.com/cdn.wpbakery.com/teasers/nitropack-ico.1759415102.png\";s:14:\"learn_more_url\";s:28:\"https://nitropack.io/#0Q97HN\";s:11:\"plugin_slug\";s:18:\"nitropack/main.php\";}}','auto'),
(263257,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1770400706;s:7:\"checked\";a:4:{s:7:\"jevelin\";s:4:\"5.14\";s:7:\"lambert\";s:5:\"2.5.2\";s:16:\"twentytwentyfive\";s:3:\"1.4\";s:16:\"twentytwentyfour\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:2:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.4.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.4.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}}s:12:\"translations\";a:0:{}}','off'),
(268858,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.9.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.9.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.9.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.9.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.9.1\";s:7:\"version\";s:5:\"6.9.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1770400705;s:15:\"version_checked\";s:5:\"6.9.1\";s:12:\"translations\";a:0:{}}','off'),
(269411,'_transient_timeout_wpb_notice_list','1770440200','off'),
(269412,'_transient_wpb_notice_list','a:1:{s:18:\"empty_api_response\";b:1;}','off'),
(269428,'_site_transient_timeout_theme_roots','1770402506','off'),
(269429,'_site_transient_theme_roots','a:4:{s:7:\"jevelin\";s:7:\"/themes\";s:7:\"lambert\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";}','off'),
(269465,'_transient_wpb_license_key_check_30f312b1228154ac9b22b035f0730e0b','1','off'),
(269466,'_transient_timeout_wpb_license_key_check_30f312b1228154ac9b22b035f0730e0b','1770502863','off'),
(269470,'_transient_timeout_wpb_support_expire_check_30f312b1228154ac9b22b035f0730e0b','1770502863','off'),
(269472,'_transient_wpb_support_expire_check_30f312b1228154ac9b22b035f0730e0b','1','off'),
(269495,'_site_transient_timeout_wp_theme_files_patterns-942cac68067b36b924149fd9b94632fd','1770426623','off'),
(269496,'_site_transient_wp_theme_files_patterns-942cac68067b36b924149fd9b94632fd','a:2:{s:7:\"version\";s:4:\"5.14\";s:8:\"patterns\";a:0:{}}','off');
/*!40000 ALTER TABLE `wpwn_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_postmeta`
--

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

--
-- Dumping data for table `wpwn_postmeta`
--

LOCK TABLES `wpwn_postmeta` WRITE;
/*!40000 ALTER TABLE `wpwn_postmeta` DISABLE KEYS */;
INSERT INTO `wpwn_postmeta` VALUES
(25,22,'_form','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),
(26,22,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:50:\"[_site_title] <wordpress@guidoconstructioninc.com>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),
(27,22,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:50:\"[_site_title] <wordpress@guidoconstructioninc.com>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),
(28,22,'_messages','a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}'),
(30,22,'_locale','en_US'),
(32,24,'_wp_attached_file','woocommerce-placeholder.png'),
(33,24,'_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-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),
(36,32,'_wp_attached_file','2021/08/topdown-drone-aerial-photography-concrete-pour-Guido_Construction.jpg'),
(37,32,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1259;s:6:\"height\";i:708;s:4:\"file\";s:77:\"2021/08/topdown-drone-aerial-photography-concrete-pour-Guido_Construction.jpg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:77:\"topdown-drone-aerial-photography-concrete-pour-Guido_Construction-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:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:77:\"topdown-drone-aerial-photography-concrete-pour-Guido_Construction-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:77:\"topdown-drone-aerial-photography-concrete-pour-Guido_Construction-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:77:\"topdown-drone-aerial-photography-concrete-pour-Guido_Construction-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:78:\"topdown-drone-aerial-photography-concrete-pour-Guido_Construction-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:77:\"topdown-drone-aerial-photography-concrete-pour-Guido_Construction-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:77:\"topdown-drone-aerial-photography-concrete-pour-Guido_Construction-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:77:\"topdown-drone-aerial-photography-concrete-pour-Guido_Construction-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:11:\"shop_single\";a:4:{s:4:\"file\";s:77:\"topdown-drone-aerial-photography-concrete-pour-Guido_Construction-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:77:\"topdown-drone-aerial-photography-concrete-pour-Guido_Construction-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:{}}}'),
(58,41,'_customize_changeset_uuid','f38a3dee-b984-4bf9-952b-ad39b8c5fbe7'),
(67,41,'_edit_lock','1767647956:1'),
(68,41,'_edit_last','1'),
(69,41,'_wp_page_template','default'),
(70,41,'_wpb_vc_js_status','true'),
(71,50,'_wp_attached_file','2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg'),
(72,50,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1259;s:6:\"height\";i:708;s:4:\"file\";s:82:\"2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:82:\"Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction-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:83:\"Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction-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:82:\"Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction-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:82:\"Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:82:\"Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction-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:82:\"Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:82:\"Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction-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:82:\"Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction-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:82:\"Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:82:\"Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction-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:{}}}'),
(73,51,'_wp_attached_file','2021/08/top-down-concrete-pour-jobsite-concrete-work-Guido_Construction.jpg'),
(74,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1282;s:6:\"height\";i:721;s:4:\"file\";s:75:\"2021/08/top-down-concrete-pour-jobsite-concrete-work-Guido_Construction.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:75:\"top-down-concrete-pour-jobsite-concrete-work-Guido_Construction-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:76:\"top-down-concrete-pour-jobsite-concrete-work-Guido_Construction-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:75:\"top-down-concrete-pour-jobsite-concrete-work-Guido_Construction-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:75:\"top-down-concrete-pour-jobsite-concrete-work-Guido_Construction-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:75:\"top-down-concrete-pour-jobsite-concrete-work-Guido_Construction-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:75:\"top-down-concrete-pour-jobsite-concrete-work-Guido_Construction-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:75:\"top-down-concrete-pour-jobsite-concrete-work-Guido_Construction-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:75:\"top-down-concrete-pour-jobsite-concrete-work-Guido_Construction-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:75:\"top-down-concrete-pour-jobsite-concrete-work-Guido_Construction-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:75:\"top-down-concrete-pour-jobsite-concrete-work-Guido_Construction-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:{}}}'),
(75,41,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:3:{s:29:\"1758670135719-534cad9c-e120-3\";a:3:{s:3:\"tag\";s:21:\"vc_masonry_media_grid\";s:4:\"atts\";a:4:{s:3:\"css\";s:0:\"\";s:25:\"initial_loading_animation\";s:6:\"fadeIn\";s:7:\"grid_id\";s:36:\"vc_gid:1758670135719-534cad9c-e120-3\";s:7:\"include\";s:11:\"583,582,581\";}s:7:\"content\";s:0:\"\";}s:30:\"1758670135720-6cf487fe-f452-10\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:4:{s:4:\"item\";s:27:\"mediaGrid_ScaleWithRotation\";s:25:\"initial_loading_animation\";s:8:\"fadeInUp\";s:7:\"grid_id\";s:37:\"vc_gid:1758670135720-6cf487fe-f452-10\";s:7:\"include\";s:11:\"531,359,378\";}s:7:\"content\";s:0:\"\";}s:29:\"1758670135722-d7ddbad4-f022-0\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:4:{s:13:\"element_width\";s:1:\"3\";s:25:\"initial_loading_animation\";s:8:\"fadeInUp\";s:7:\"grid_id\";s:36:\"vc_gid:1758670135722-d7ddbad4-f022-0\";s:7:\"include\";s:15:\"267,266,271,265\";}s:7:\"content\";s:0:\"\";}}}}'),
(76,41,'_oembed_2cd638790d8e58e3fa771114afda4c00','<iframe title=\"Timelapse - Lighthouse (Oct 2012)\" src=\"https://player.vimeo.com/video/51589652?dnt=1&amp;app_id=122963&amp;h=836062ff9b\" width=\"750\" height=\"422\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),
(77,41,'_oembed_time_2cd638790d8e58e3fa771114afda4c00','1629933436'),
(85,57,'_customize_changeset_uuid','27c4e6ea-84e0-4bd1-8aa8-816ccbc69559'),
(87,58,'_customize_changeset_uuid','27c4e6ea-84e0-4bd1-8aa8-816ccbc69559'),
(89,59,'_customize_changeset_uuid','27c4e6ea-84e0-4bd1-8aa8-816ccbc69559'),
(91,60,'_customize_changeset_uuid','27c4e6ea-84e0-4bd1-8aa8-816ccbc69559'),
(92,65,'_menu_item_type','post_type'),
(93,65,'_menu_item_menu_item_parent','0'),
(94,65,'_menu_item_object_id','41'),
(95,65,'_menu_item_object','page'),
(96,65,'_menu_item_target',''),
(97,65,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(98,65,'_menu_item_xfn',''),
(99,65,'_menu_item_url',''),
(100,66,'_menu_item_type','post_type'),
(101,66,'_menu_item_menu_item_parent','0'),
(102,66,'_menu_item_object_id','57'),
(103,66,'_menu_item_object','page'),
(104,66,'_menu_item_target',''),
(105,66,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(106,66,'_menu_item_xfn',''),
(107,66,'_menu_item_url',''),
(108,67,'_menu_item_type','post_type'),
(109,67,'_menu_item_menu_item_parent','0'),
(110,67,'_menu_item_object_id','58'),
(111,67,'_menu_item_object','page'),
(112,67,'_menu_item_target',''),
(113,67,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(114,67,'_menu_item_xfn',''),
(115,67,'_menu_item_url',''),
(116,68,'_menu_item_type','post_type'),
(117,68,'_menu_item_menu_item_parent','0'),
(118,68,'_menu_item_object_id','59'),
(119,68,'_menu_item_object','page'),
(120,68,'_menu_item_target',''),
(121,68,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(122,68,'_menu_item_xfn',''),
(123,68,'_menu_item_url',''),
(124,69,'_menu_item_type','post_type'),
(125,69,'_menu_item_menu_item_parent','0'),
(126,69,'_menu_item_object_id','60'),
(127,69,'_menu_item_object','page'),
(128,69,'_menu_item_target',''),
(129,69,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),
(130,69,'_menu_item_xfn',''),
(131,69,'_menu_item_url',''),
(135,71,'_wpb_shortcodes_custom_css','.vc_custom_1629936864669{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(136,41,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(137,72,'_wpb_shortcodes_custom_css','.vc_custom_1629936864669{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(148,78,'_wp_attached_file','2021/08/GuidoConstructionInc-roseburg-oregon-concrete-work.jpg'),
(149,78,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1313;s:6:\"height\";i:739;s:4:\"file\";s:62:\"2021/08/GuidoConstructionInc-roseburg-oregon-concrete-work.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"GuidoConstructionInc-roseburg-oregon-concrete-work-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:63:\"GuidoConstructionInc-roseburg-oregon-concrete-work-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:62:\"GuidoConstructionInc-roseburg-oregon-concrete-work-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:62:\"GuidoConstructionInc-roseburg-oregon-concrete-work-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:62:\"GuidoConstructionInc-roseburg-oregon-concrete-work-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:62:\"GuidoConstructionInc-roseburg-oregon-concrete-work-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:62:\"GuidoConstructionInc-roseburg-oregon-concrete-work-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:62:\"GuidoConstructionInc-roseburg-oregon-concrete-work-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:62:\"GuidoConstructionInc-roseburg-oregon-concrete-work-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:62:\"GuidoConstructionInc-roseburg-oregon-concrete-work-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:{}}}'),
(150,79,'_wpb_shortcodes_custom_css','.vc_custom_1629936864669{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(151,80,'_wp_attached_file','2021/08/Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image.jpg'),
(152,80,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:929;s:4:\"file\";s:94:\"2021/08/Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:94:\"Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:95:\"Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image-1024x495.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:495;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:94:\"Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image-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:94:\"Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image-768x372.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:95:\"Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image-1536x743.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:743;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:94:\"Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image-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:94:\"Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image-500x242.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:94:\"Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image-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:94:\"Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image-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:94:\"Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image-500x242.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:242;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:94:\"Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image-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:{}}}'),
(153,81,'_wpb_shortcodes_custom_css','.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(154,82,'_wpb_shortcodes_custom_css','.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(155,83,'_wpb_shortcodes_custom_css','.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(156,84,'_wpb_shortcodes_custom_css','.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(157,85,'_wpb_shortcodes_custom_css','.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(158,86,'_wpb_shortcodes_custom_css','.vc_custom_1629939935713{background-color: #636363 !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(159,87,'_wpb_shortcodes_custom_css','.vc_custom_1629939935713{background-color: #636363 !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(160,88,'_wpb_shortcodes_custom_css','.vc_custom_1629939935713{background-color: #636363 !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(161,89,'_wpb_shortcodes_custom_css','.vc_custom_1629940341172{background-color: #00417a !important;}.vc_custom_1629939935713{background-color: #636363 !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(162,90,'_wpb_shortcodes_custom_css','.vc_custom_1629940401083{background-color: #002d5e !important;}.vc_custom_1629939935713{background-color: #636363 !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(163,91,'_wp_attached_file','2021/08/Guido-Construction-VA-JOBSITE-01.jpg'),
(164,91,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:844;s:4:\"file\";s:44:\"2021/08/Guido-Construction-VA-JOBSITE-01.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-01-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:45:\"Guido-Construction-VA-JOBSITE-01-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:44:\"Guido-Construction-VA-JOBSITE-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-01-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-01-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:44:\"Guido-Construction-VA-JOBSITE-01-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-01-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:44:\"Guido-Construction-VA-JOBSITE-01-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:44:\"Guido-Construction-VA-JOBSITE-01-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-01-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:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS M50\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1626842037\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(165,92,'_wp_attached_file','2021/08/Guido-Construction-VA-JOBSITE-02.jpg'),
(166,92,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:844;s:4:\"file\";s:44:\"2021/08/Guido-Construction-VA-JOBSITE-02.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-02-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:45:\"Guido-Construction-VA-JOBSITE-02-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:44:\"Guido-Construction-VA-JOBSITE-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-02-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-02-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:44:\"Guido-Construction-VA-JOBSITE-02-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-02-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:44:\"Guido-Construction-VA-JOBSITE-02-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:44:\"Guido-Construction-VA-JOBSITE-02-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-02-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:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS M50\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1626842118\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"15\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(167,93,'_wp_attached_file','2021/08/Guido-Construction-VA-JOBSITE-03.jpg'),
(168,93,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:844;s:4:\"file\";s:44:\"2021/08/Guido-Construction-VA-JOBSITE-03.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-03-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:45:\"Guido-Construction-VA-JOBSITE-03-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:44:\"Guido-Construction-VA-JOBSITE-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-03-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-03-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:44:\"Guido-Construction-VA-JOBSITE-03-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-03-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:44:\"Guido-Construction-VA-JOBSITE-03-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:44:\"Guido-Construction-VA-JOBSITE-03-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-03-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:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS M50\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1626842139\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"15\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(169,94,'_wp_attached_file','2021/08/Guido-Construction-VA-JOBSITE-04.jpg'),
(170,94,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:844;s:4:\"file\";s:44:\"2021/08/Guido-Construction-VA-JOBSITE-04.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-04-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:45:\"Guido-Construction-VA-JOBSITE-04-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:44:\"Guido-Construction-VA-JOBSITE-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-04-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-04-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:44:\"Guido-Construction-VA-JOBSITE-04-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-04-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:44:\"Guido-Construction-VA-JOBSITE-04-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:44:\"Guido-Construction-VA-JOBSITE-04-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-04-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:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS M50\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1626842180\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"15\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(171,95,'_wp_attached_file','2021/08/Guido-Construction-VA-JOBSITE-05.jpg'),
(172,95,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:844;s:4:\"file\";s:44:\"2021/08/Guido-Construction-VA-JOBSITE-05.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-05-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:45:\"Guido-Construction-VA-JOBSITE-05-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:44:\"Guido-Construction-VA-JOBSITE-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-05-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-05-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:44:\"Guido-Construction-VA-JOBSITE-05-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-05-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:44:\"Guido-Construction-VA-JOBSITE-05-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:44:\"Guido-Construction-VA-JOBSITE-05-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-05-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:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS M50\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1626842200\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"15\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(173,96,'_wp_attached_file','2021/08/Guido-Construction-VA-JOBSITE-06.jpg'),
(174,96,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:844;s:4:\"file\";s:44:\"2021/08/Guido-Construction-VA-JOBSITE-06.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-06-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:45:\"Guido-Construction-VA-JOBSITE-06-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:44:\"Guido-Construction-VA-JOBSITE-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-06-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-06-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:44:\"Guido-Construction-VA-JOBSITE-06-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-06-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:44:\"Guido-Construction-VA-JOBSITE-06-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:44:\"Guido-Construction-VA-JOBSITE-06-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-06-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:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS M50\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1626842289\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"15\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(175,97,'_wp_attached_file','2021/08/Guido-Construction-VA-JOBSITE-07.jpg'),
(176,97,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:844;s:4:\"file\";s:44:\"2021/08/Guido-Construction-VA-JOBSITE-07.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-07-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:45:\"Guido-Construction-VA-JOBSITE-07-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:44:\"Guido-Construction-VA-JOBSITE-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-07-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-07-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:44:\"Guido-Construction-VA-JOBSITE-07-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-07-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:44:\"Guido-Construction-VA-JOBSITE-07-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:44:\"Guido-Construction-VA-JOBSITE-07-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-07-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:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS M50\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1626842466\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"29\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(177,98,'_wp_attached_file','2021/08/Guido-Construction-VA-JOBSITE-08.jpg'),
(178,98,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:844;s:4:\"file\";s:44:\"2021/08/Guido-Construction-VA-JOBSITE-08.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-08-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:45:\"Guido-Construction-VA-JOBSITE-08-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:44:\"Guido-Construction-VA-JOBSITE-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-08-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-08-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:44:\"Guido-Construction-VA-JOBSITE-08-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-08-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:44:\"Guido-Construction-VA-JOBSITE-08-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:44:\"Guido-Construction-VA-JOBSITE-08-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-08-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:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS M50\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1626842543\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(179,99,'_wp_attached_file','2021/08/Guido-Construction-VA-JOBSITE-09.jpg'),
(180,99,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:957;s:4:\"file\";s:44:\"2021/08/Guido-Construction-VA-JOBSITE-09.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-09-300x191.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"Guido-Construction-VA-JOBSITE-09-1024x653.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-09-768x490.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-09-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:44:\"Guido-Construction-VA-JOBSITE-09-500x319.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-09-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:44:\"Guido-Construction-VA-JOBSITE-09-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:44:\"Guido-Construction-VA-JOBSITE-09-500x319.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-09-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:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS M50\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1626843278\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(181,100,'_wp_attached_file','2021/08/Guido-Construction-VA-JOBSITE-10.jpg'),
(182,100,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:844;s:4:\"file\";s:44:\"2021/08/Guido-Construction-VA-JOBSITE-10.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-10-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:45:\"Guido-Construction-VA-JOBSITE-10-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:44:\"Guido-Construction-VA-JOBSITE-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-10-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-10-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:44:\"Guido-Construction-VA-JOBSITE-10-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-10-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:44:\"Guido-Construction-VA-JOBSITE-10-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:44:\"Guido-Construction-VA-JOBSITE-10-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-10-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:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS M50\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1626844535\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(183,101,'_wp_attached_file','2021/08/Guido-Construction-VA-JOBSITE-11.jpg'),
(184,101,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:844;s:4:\"file\";s:44:\"2021/08/Guido-Construction-VA-JOBSITE-11.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-11-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:45:\"Guido-Construction-VA-JOBSITE-11-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:44:\"Guido-Construction-VA-JOBSITE-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-11-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-11-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:44:\"Guido-Construction-VA-JOBSITE-11-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-11-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:44:\"Guido-Construction-VA-JOBSITE-11-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:44:\"Guido-Construction-VA-JOBSITE-11-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-11-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:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS M50\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1626844631\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(185,102,'_wp_attached_file','2021/08/Guido-Construction-VA-JOBSITE-12.jpg'),
(186,102,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:844;s:4:\"file\";s:44:\"2021/08/Guido-Construction-VA-JOBSITE-12.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-12-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:45:\"Guido-Construction-VA-JOBSITE-12-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:44:\"Guido-Construction-VA-JOBSITE-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-12-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-12-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:44:\"Guido-Construction-VA-JOBSITE-12-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-12-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:44:\"Guido-Construction-VA-JOBSITE-12-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:44:\"Guido-Construction-VA-JOBSITE-12-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"Guido-Construction-VA-JOBSITE-12-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:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS M50\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1626846337\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(187,103,'_wp_attached_file','2021/08/BW-Guido-Construction-Logo.png'),
(188,103,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:190;s:6:\"height\";i:208;s:4:\"file\";s:38:\"2021/08/BW-Guido-Construction-Logo.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"BW-Guido-Construction-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"BW-Guido-Construction-Logo-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:38:\"BW-Guido-Construction-Logo-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:{}}}'),
(189,104,'_wp_attached_file','2021/08/Guido-Construcion-Icon.png'),
(190,104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:189;s:6:\"height\";i:208;s:4:\"file\";s:34:\"2021/08/Guido-Construcion-Icon.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Guido-Construcion-Icon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"Guido-Construcion-Icon-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:34:\"Guido-Construcion-Icon-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:{}}}'),
(191,105,'_wp_attached_file','2021/08/Horizontal-Guido-Construction-Logo.png'),
(192,105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:517;s:6:\"height\";i:207;s:4:\"file\";s:46:\"2021/08/Horizontal-Guido-Construction-Logo.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Horizontal-Guido-Construction-Logo-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Horizontal-Guido-Construction-Logo-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:46:\"Horizontal-Guido-Construction-Logo-300x207.png\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:46:\"Horizontal-Guido-Construction-Logo-500x200.png\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Horizontal-Guido-Construction-Logo-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:46:\"Horizontal-Guido-Construction-Logo-300x207.png\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:46:\"Horizontal-Guido-Construction-Logo-500x200.png\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"Horizontal-Guido-Construction-Logo-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:{}}}'),
(193,106,'_wp_attached_file','2021/08/Vertical-Guido-Construction-Logo-e1630085781785.png'),
(194,106,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:161;s:4:\"file\";s:59:\"2021/08/Vertical-Guido-Construction-Logo-e1630085781785.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Vertical-Guido-Construction-Logo-280x300.png\";s:5:\"width\";i:280;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Vertical-Guido-Construction-Logo-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:44:\"Vertical-Guido-Construction-Logo-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:44:\"Vertical-Guido-Construction-Logo-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:44:\"Vertical-Guido-Construction-Logo-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:44:\"Vertical-Guido-Construction-Logo-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:{}}}'),
(200,109,'_wpb_shortcodes_custom_css','.vc_custom_1629940401083{background-color: #002d5e !important;}.vc_custom_1629939935713{background-color: #636363 !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(201,110,'_wpb_shortcodes_custom_css','.vc_custom_1629940401083{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(203,106,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:319;s:6:\"height\";i:342;s:4:\"file\";s:36:\"Vertical-Guido-Construction-Logo.png\";}}'),
(204,112,'_wp_attached_file','2021/08/Guido-Construction-Secondary-Logo-Vertical.png'),
(205,112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:161;s:6:\"height\";i:224;s:4:\"file\";s:54:\"2021/08/Guido-Construction-Secondary-Logo-Vertical.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"Guido-Construction-Secondary-Logo-Vertical-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:54:\"Guido-Construction-Secondary-Logo-Vertical-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:54:\"Guido-Construction-Secondary-Logo-Vertical-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:{}}}'),
(211,115,'_wpb_shortcodes_custom_css','.vc_custom_1629940401083{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(212,116,'_wp_attached_file','2021/08/GC-ICON.png'),
(213,116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:208;s:6:\"height\";i:290;s:4:\"file\";s:19:\"2021/08/GC-ICON.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"GC-ICON-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"GC-ICON-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:19:\"GC-ICON-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:{}}}'),
(214,57,'_edit_lock','1758674003:1'),
(215,57,'_wpb_vc_js_status','true'),
(216,57,'_edit_last','1'),
(217,57,'_wp_page_template','homepage.php'),
(218,119,'_wpb_shortcodes_custom_css','.vc_custom_1630094327954{background-color: #8da2bc !important;}.vc_custom_1630094058173{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-VA-JOBSITE-12.jpg?id=102) !important;}'),
(219,57,'_wpb_shortcodes_custom_css','.vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630709460446{background-color: #a4b0bc !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(221,120,'_wpb_shortcodes_custom_css','.vc_custom_1630094554815{background-color: #a4b0bc !important;}.vc_custom_1630094389111{background-color: #141a3c !important;}'),
(222,121,'_wpb_shortcodes_custom_css','.vc_custom_1630094554815{background-color: #a4b0bc !important;}.vc_custom_1630094389111{background-color: #141a3c !important;}'),
(223,122,'_wpb_shortcodes_custom_css','.vc_custom_1630095298336{background-color: #a4b0bc !important;}.vc_custom_1630095309993{background-color: #141a3c !important;}'),
(224,123,'_wpb_shortcodes_custom_css','.vc_custom_1630095298336{background-color: #a4b0bc !important;}.vc_custom_1630095309993{background-color: #141a3c !important;}.vc_custom_1630095404996{background-color: #316fbc !important;}.vc_custom_1630095391782{background-color: #316fbc !important;}.vc_custom_1630095448054{background-color: #316fbc !important;}.vc_custom_1630095427890{background-color: #316fbc !important;}'),
(225,124,'_wpb_shortcodes_custom_css','.vc_custom_1630095515845{background-color: #316fbc !important;}.vc_custom_1630095298336{background-color: #a4b0bc !important;}.vc_custom_1630095309993{background-color: #141a3c !important;}'),
(226,125,'_form','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),
(227,125,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:50:\"[_site_title] <wordpress@guidoconstructioninc.com>\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(228,125,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:50:\"[_site_title] <wordpress@guidoconstructioninc.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),
(229,125,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),
(230,125,'_additional_settings',''),
(231,125,'_locale','en_US'),
(232,127,'_wpb_shortcodes_custom_css','.vc_custom_1630095515845{background-color: #316fbc !important;}.vc_custom_1630095298336{background-color: #a4b0bc !important;}.vc_custom_1630095309993{background-color: #141a3c !important;}'),
(234,128,'_wp_attached_file','2021/08/Guido-Construction-Typographical-Logo.png'),
(235,128,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:208;s:6:\"height\";i:85;s:4:\"file\";s:49:\"2021/08/Guido-Construction-Typographical-Logo.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Guido-Construction-Typographical-Logo-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Guido-Construction-Typographical-Logo-100x85.png\";s:5:\"width\";i:100;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Guido-Construction-Typographical-Logo-100x85.png\";s:5:\"width\";i:100;s:6:\"height\";i:85;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:{}}}'),
(237,130,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(240,133,'_wpb_shortcodes_custom_css','.vc_custom_1630095515845{background-color: #316fbc !important;}.vc_custom_1630095298336{background-color: #a4b0bc !important;}.vc_custom_1630095309993{background-color: #141a3c !important;}'),
(241,134,'_wpb_shortcodes_custom_css','.vc_custom_1630095515845{background-color: #316fbc !important;}.vc_custom_1630095298336{background-color: #a4b0bc !important;}.vc_custom_1630097788927{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}'),
(242,135,'_wpb_shortcodes_custom_css','.vc_custom_1630095515845{background-color: #316fbc !important;}.vc_custom_1630095298336{background-color: #a4b0bc !important;}.vc_custom_1630097788927{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}'),
(243,136,'_wpb_shortcodes_custom_css','.vc_custom_1630098211794{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/GuidoConstructionInc-roseburg-oregon-concrete-work.jpg?id=78) !important;}.vc_custom_1630095298336{background-color: #a4b0bc !important;}.vc_custom_1630097788927{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}'),
(244,137,'_wpb_shortcodes_custom_css','.vc_custom_1630098280113{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image.jpg?id=80) !important;}.vc_custom_1630095298336{background-color: #a4b0bc !important;}.vc_custom_1630097788927{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}'),
(245,138,'_wpb_shortcodes_custom_css','.vc_custom_1630098280113{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image.jpg?id=80) !important;}.vc_custom_1630095298336{background-color: #a4b0bc !important;}.vc_custom_1630097788927{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}'),
(246,139,'_wpb_shortcodes_custom_css','.vc_custom_1630098280113{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image.jpg?id=80) !important;}.vc_custom_1630095298336{background-color: #a4b0bc !important;}.vc_custom_1630097788927{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}'),
(247,140,'_wpb_shortcodes_custom_css','.vc_custom_1630098280113{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image.jpg?id=80) !important;}.vc_custom_1630095298336{background-color: #a4b0bc !important;}.vc_custom_1630097788927{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}'),
(248,141,'_wpb_shortcodes_custom_css','.vc_custom_1630098280113{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image.jpg?id=80) !important;}.vc_custom_1630095298336{background-color: #a4b0bc !important;}.vc_custom_1630097788927{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}'),
(249,142,'_wpb_shortcodes_custom_css','.vc_custom_1630098280113{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image.jpg?id=80) !important;}.vc_custom_1630095298336{background-color: #a4b0bc !important;}.vc_custom_1630097788927{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}'),
(250,143,'_wpb_shortcodes_custom_css','.vc_custom_1630101076514{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630095298336{background-color: #a4b0bc !important;}.vc_custom_1630097788927{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}'),
(251,144,'_wpb_shortcodes_custom_css','.vc_custom_1630101076514{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630095298336{background-color: #a4b0bc !important;}.vc_custom_1630097788927{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}'),
(252,58,'_edit_lock','1656547760:1'),
(253,58,'_edit_last','1'),
(254,58,'_wp_page_template','homepage.php'),
(255,58,'_wpb_vc_js_status','true'),
(256,146,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}'),
(257,58,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(259,147,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}'),
(260,148,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}'),
(261,149,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}'),
(262,150,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}'),
(263,151,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}'),
(264,152,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}'),
(265,153,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}'),
(266,154,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}'),
(267,155,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}'),
(268,156,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630101360771{background-color: #a4b0bc !important;}'),
(269,157,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}'),
(270,158,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}'),
(271,159,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(272,160,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(273,58,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:3:{s:29:\"1637345546524-093004af-2a0b-2\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:3:{s:13:\"element_width\";s:1:\"3\";s:7:\"grid_id\";s:36:\"vc_gid:1637345546524-093004af-2a0b-2\";s:7:\"include\";s:12:\"94,102,93,91\";}s:7:\"content\";s:0:\"\";}s:29:\"1637345546526-08096ff1-be15-6\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:3:{s:13:\"element_width\";s:1:\"3\";s:7:\"grid_id\";s:36:\"vc_gid:1637345546526-08096ff1-be15-6\";s:7:\"include\";s:11:\"270,263,267\";}s:7:\"content\";s:0:\"\";}s:29:\"1637345546527-5a8e6634-a9d1-0\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:3:{s:13:\"element_width\";s:1:\"3\";s:7:\"grid_id\";s:36:\"vc_gid:1637345546527-5a8e6634-a9d1-0\";s:7:\"include\";s:12:\"99,96,92,101\";}s:7:\"content\";s:0:\"\";}}}}'),
(274,161,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(275,162,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(276,163,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(277,164,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(278,165,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(279,166,'_wp_attached_file','2021/08/Guido-Construction-VA-JOBSITE-Drone-Photos-2.jpg'),
(280,166,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:56:\"2021/08/Guido-Construction-VA-JOBSITE-Drone-Photos-2.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Guido-Construction-VA-JOBSITE-Drone-Photos-2-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:57:\"Guido-Construction-VA-JOBSITE-Drone-Photos-2-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:56:\"Guido-Construction-VA-JOBSITE-Drone-Photos-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:56:\"Guido-Construction-VA-JOBSITE-Drone-Photos-2-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:57:\"Guido-Construction-VA-JOBSITE-Drone-Photos-2-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:56:\"Guido-Construction-VA-JOBSITE-Drone-Photos-2-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:56:\"Guido-Construction-VA-JOBSITE-Drone-Photos-2-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:56:\"Guido-Construction-VA-JOBSITE-Drone-Photos-2-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:56:\"Guido-Construction-VA-JOBSITE-Drone-Photos-2-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:56:\"Guido-Construction-VA-JOBSITE-Drone-Photos-2-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:56:\"Guido-Construction-VA-JOBSITE-Drone-Photos-2-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:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:7:\"L1D-20c\";s:7:\"caption\";s:7:\"default\";s:17:\"created_timestamp\";s:10:\"1626861800\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:5:\"10.26\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:7:\"default\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(281,167,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(282,168,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(283,169,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(284,170,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(285,171,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(286,172,'_wp_attached_file','2021/08/Caution-Area-Construction-Icon.png'),
(287,172,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:59;s:6:\"height\";i:52;s:4:\"file\";s:42:\"2021/08/Caution-Area-Construction-Icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(288,173,'_wp_attached_file','2021/08/Concrete-Roller-Icon.png'),
(289,173,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:98;s:6:\"height\";i:58;s:4:\"file\";s:32:\"2021/08/Concrete-Roller-Icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(290,174,'_wp_attached_file','2021/08/Concrete-Truck-Icon.png'),
(291,174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:111;s:6:\"height\";i:57;s:4:\"file\";s:31:\"2021/08/Concrete-Truck-Icon.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"Concrete-Truck-Icon-100x57.png\";s:5:\"width\";i:100;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"Concrete-Truck-Icon-100x57.png\";s:5:\"width\";i:100;s:6:\"height\";i:57;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:{}}}'),
(292,175,'_wp_attached_file','2021/08/Construction-Plans-Icon.png'),
(293,175,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:78;s:6:\"height\";i:62;s:4:\"file\";s:35:\"2021/08/Construction-Plans-Icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(294,176,'_wp_attached_file','2021/08/Hard-Hat-Construction-Icon.png'),
(295,176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:77;s:6:\"height\";i:41;s:4:\"file\";s:38:\"2021/08/Hard-Hat-Construction-Icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(296,177,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(297,178,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(298,179,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(300,59,'_edit_lock','1732673806:1'),
(301,59,'_edit_last','1'),
(302,59,'_wp_page_template','homepage.php'),
(303,59,'_wpb_vc_js_status','true'),
(304,182,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(305,59,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(307,183,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(308,184,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(309,185,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(310,186,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(311,187,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(312,188,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(313,189,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(314,190,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(315,59,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:14:{s:29:\"1732673755834-f78becfd-610b-6\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:4:{s:13:\"element_width\";s:1:\"3\";s:3:\"css\";s:0:\"\";s:7:\"grid_id\";s:36:\"vc_gid:1732673755834-f78becfd-610b-6\";s:7:\"include\";s:31:\"572,573,566,567,568,569,570,571\";}s:7:\"content\";s:0:\"\";}s:29:\"1732673755834-532830e8-77e3-6\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:4:{s:13:\"element_width\";s:1:\"2\";s:3:\"css\";s:0:\"\";s:7:\"grid_id\";s:36:\"vc_gid:1732673755834-532830e8-77e3-6\";s:7:\"include\";s:23:\"556,555,554,552,553,562\";}s:7:\"content\";s:0:\"\";}s:29:\"1732673755835-c9277240-2910-3\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:4:{s:13:\"element_width\";s:1:\"3\";s:3:\"css\";s:0:\"\";s:7:\"grid_id\";s:36:\"vc_gid:1732673755835-c9277240-2910-3\";s:7:\"include\";s:15:\"547,545,546,560\";}s:7:\"content\";s:0:\"\";}s:29:\"1732673755835-08caed5d-b260-1\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:4:{s:13:\"element_width\";s:1:\"3\";s:3:\"css\";s:0:\"\";s:7:\"grid_id\";s:36:\"vc_gid:1732673755835-08caed5d-b260-1\";s:7:\"include\";s:15:\"549,548,550,551\";}s:7:\"content\";s:0:\"\";}s:29:\"1732673755836-49c8dd57-7bf3-8\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:4:{s:13:\"element_width\";s:1:\"2\";s:3:\"css\";s:0:\"\";s:7:\"grid_id\";s:36:\"vc_gid:1732673755836-49c8dd57-7bf3-8\";s:7:\"include\";s:23:\"558,557,561,562,563,564\";}s:7:\"content\";s:0:\"\";}s:29:\"1732673755837-95b3d993-5a7f-8\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:3:{s:13:\"element_width\";s:1:\"2\";s:7:\"grid_id\";s:36:\"vc_gid:1732673755837-95b3d993-5a7f-8\";s:7:\"include\";s:23:\"538,531,540,539,541,542\";}s:7:\"content\";s:0:\"\";}s:29:\"1732673755837-a3147223-f475-1\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:3:{s:13:\"element_width\";s:1:\"2\";s:7:\"grid_id\";s:36:\"vc_gid:1732673755837-a3147223-f475-1\";s:7:\"include\";s:23:\"512,513,511,509,510,518\";}s:7:\"content\";s:0:\"\";}s:29:\"1732673755837-cee946a8-5024-5\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:3:{s:13:\"element_width\";s:1:\"2\";s:7:\"grid_id\";s:36:\"vc_gid:1732673755837-cee946a8-5024-5\";s:7:\"include\";s:23:\"301,443,304,305,306,307\";}s:7:\"content\";s:0:\"\";}s:29:\"1732673755837-e54c814d-d539-4\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:4:{s:13:\"element_width\";s:1:\"3\";s:3:\"gap\";s:2:\"10\";s:7:\"grid_id\";s:36:\"vc_gid:1732673755837-e54c814d-d539-4\";s:7:\"include\";s:15:\"267,266,265,378\";}s:7:\"content\";s:0:\"\";}s:29:\"1732673755837-06e33894-c92d-5\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:3:{s:13:\"element_width\";s:1:\"2\";s:7:\"grid_id\";s:36:\"vc_gid:1732673755837-06e33894-c92d-5\";s:7:\"include\";s:23:\"359,352,358,360,365,364\";}s:7:\"content\";s:0:\"\";}s:30:\"1732673755838-8c9ccb09-95d1-10\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:2:{s:7:\"grid_id\";s:37:\"vc_gid:1732673755838-8c9ccb09-95d1-10\";s:7:\"include\";s:11:\"269,263,268\";}s:7:\"content\";s:0:\"\";}s:29:\"1732673755838-41d2bf17-face-2\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:4:{s:13:\"element_width\";s:1:\"3\";s:3:\"gap\";s:2:\"10\";s:7:\"grid_id\";s:36:\"vc_gid:1732673755838-41d2bf17-face-2\";s:7:\"include\";s:25:\"102,101,99,95,94,92,91,93\";}s:7:\"content\";s:0:\"\";}s:29:\"1732673755838-87315f2b-e8d3-3\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:2:{s:7:\"grid_id\";s:36:\"vc_gid:1732673755838-87315f2b-e8d3-3\";s:7:\"include\";s:11:\"310,309,308\";}s:7:\"content\";s:0:\"\";}s:30:\"1732673755838-ed309ef1-4dc7-10\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:2:{s:7:\"grid_id\";s:37:\"vc_gid:1732673755838-ed309ef1-4dc7-10\";s:7:\"include\";s:11:\"457,458,468\";}s:7:\"content\";s:0:\"\";}}}}'),
(316,191,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(317,192,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(318,193,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(319,194,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(320,195,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(321,196,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(322,197,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(323,198,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(324,199,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(325,200,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(326,201,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(327,202,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(328,203,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(329,204,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(330,205,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(331,206,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(332,207,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(333,208,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(334,209,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(335,60,'_edit_lock','1758674226:1'),
(336,60,'_wpb_vc_js_status','true'),
(338,60,'_edit_last','1'),
(339,60,'_wp_page_template','homepage.php'),
(340,211,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(341,60,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(342,212,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(343,213,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(344,214,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(345,215,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(346,216,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(347,217,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(348,218,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(349,219,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(350,220,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(351,221,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(352,222,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(353,223,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(354,224,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(355,225,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(356,226,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(357,227,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(358,228,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(359,229,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(360,230,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(361,231,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(362,232,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(363,233,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(364,234,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(365,235,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(366,236,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(367,237,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(368,238,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(370,240,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(371,241,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(372,242,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(373,243,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(374,244,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(375,245,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(376,246,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(377,247,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(378,248,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(379,249,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(389,256,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(390,257,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(391,258,'_wpb_shortcodes_custom_css','.vc_custom_1630101076514{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630625641518{background-color: #a4b0bc !important;}.vc_custom_1630097788927{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}'),
(392,259,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(393,260,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(395,263,'_wp_attached_file','2021/09/ParkingLot_Concrete_Work_Oregon_Guido_Construction_Douglas_County.jpg'),
(396,263,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1299;s:6:\"height\";i:731;s:4:\"file\";s:77:\"2021/09/ParkingLot_Concrete_Work_Oregon_Guido_Construction_Douglas_County.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:77:\"ParkingLot_Concrete_Work_Oregon_Guido_Construction_Douglas_County-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:78:\"ParkingLot_Concrete_Work_Oregon_Guido_Construction_Douglas_County-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:77:\"ParkingLot_Concrete_Work_Oregon_Guido_Construction_Douglas_County-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:77:\"ParkingLot_Concrete_Work_Oregon_Guido_Construction_Douglas_County-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(397,264,'_wp_attached_file','2021/09/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg'),
(398,264,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1259;s:6:\"height\";i:708;s:4:\"file\";s:82:\"2021/09/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:82:\"Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction-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:83:\"Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction-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:82:\"Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction-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:82:\"Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(399,265,'_wp_attached_file','2021/09/S-Curve-at-stewart-parkway-concrete-sidewalks-pavement.jpg'),
(400,265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1149;s:6:\"height\";i:646;s:4:\"file\";s:66:\"2021/09/S-Curve-at-stewart-parkway-concrete-sidewalks-pavement.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:66:\"S-Curve-at-stewart-parkway-concrete-sidewalks-pavement-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:67:\"S-Curve-at-stewart-parkway-concrete-sidewalks-pavement-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:66:\"S-Curve-at-stewart-parkway-concrete-sidewalks-pavement-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:66:\"S-Curve-at-stewart-parkway-concrete-sidewalks-pavement-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(401,266,'_wp_attached_file','2021/09/S-Curve-at-stewart-parkway-concrete-sidewalks-pavement-drone-photo-Roseburg-Oregon.jpg'),
(402,266,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1149;s:6:\"height\";i:646;s:4:\"file\";s:94:\"2021/09/S-Curve-at-stewart-parkway-concrete-sidewalks-pavement-drone-photo-Roseburg-Oregon.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:94:\"S-Curve-at-stewart-parkway-concrete-sidewalks-pavement-drone-photo-Roseburg-Oregon-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:95:\"S-Curve-at-stewart-parkway-concrete-sidewalks-pavement-drone-photo-Roseburg-Oregon-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:94:\"S-Curve-at-stewart-parkway-concrete-sidewalks-pavement-drone-photo-Roseburg-Oregon-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:94:\"S-Curve-at-stewart-parkway-concrete-sidewalks-pavement-drone-photo-Roseburg-Oregon-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(403,267,'_wp_attached_file','2021/09/Sidewalks_Concrete_Pavement_Road_Guido_Construction_Roseburg_Oregon.jpg'),
(404,267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1149;s:6:\"height\";i:646;s:4:\"file\";s:79:\"2021/09/Sidewalks_Concrete_Pavement_Road_Guido_Construction_Roseburg_Oregon.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:79:\"Sidewalks_Concrete_Pavement_Road_Guido_Construction_Roseburg_Oregon-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:80:\"Sidewalks_Concrete_Pavement_Road_Guido_Construction_Roseburg_Oregon-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:79:\"Sidewalks_Concrete_Pavement_Road_Guido_Construction_Roseburg_Oregon-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:79:\"Sidewalks_Concrete_Pavement_Road_Guido_Construction_Roseburg_Oregon-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(405,268,'_wp_attached_file','2021/09/St.Joseph_Parking_Lot_Project_Concrete_Pavement_Guido_Construction_Roseburg_Oregon.jpg'),
(406,268,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1259;s:6:\"height\";i:708;s:4:\"file\";s:94:\"2021/09/St.Joseph_Parking_Lot_Project_Concrete_Pavement_Guido_Construction_Roseburg_Oregon.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:94:\"St.Joseph_Parking_Lot_Project_Concrete_Pavement_Guido_Construction_Roseburg_Oregon-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:95:\"St.Joseph_Parking_Lot_Project_Concrete_Pavement_Guido_Construction_Roseburg_Oregon-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:94:\"St.Joseph_Parking_Lot_Project_Concrete_Pavement_Guido_Construction_Roseburg_Oregon-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:94:\"St.Joseph_Parking_Lot_Project_Concrete_Pavement_Guido_Construction_Roseburg_Oregon-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(407,269,'_wp_attached_file','2021/09/St.Joseph_Parking_Lot_Project_Guido_Construction_Roseburg_Oregon.jpg'),
(408,269,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1149;s:6:\"height\";i:646;s:4:\"file\";s:76:\"2021/09/St.Joseph_Parking_Lot_Project_Guido_Construction_Roseburg_Oregon.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:76:\"St.Joseph_Parking_Lot_Project_Guido_Construction_Roseburg_Oregon-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:77:\"St.Joseph_Parking_Lot_Project_Guido_Construction_Roseburg_Oregon-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:76:\"St.Joseph_Parking_Lot_Project_Guido_Construction_Roseburg_Oregon-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:76:\"St.Joseph_Parking_Lot_Project_Guido_Construction_Roseburg_Oregon-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(409,270,'_wp_attached_file','2021/09/StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction.jpg'),
(410,270,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1259;s:6:\"height\";i:708;s:4:\"file\";s:90:\"2021/09/StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:90:\"StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction-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:91:\"StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction-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:90:\"StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction-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:90:\"StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(411,271,'_wp_attached_file','2021/09/StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction_Concrete.jpg'),
(412,271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1094;s:6:\"height\";i:615;s:4:\"file\";s:99:\"2021/09/StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction_Concrete.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:99:\"StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction_Concrete-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:100:\"StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction_Concrete-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:99:\"StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction_Concrete-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:99:\"StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction_Concrete-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(413,272,'_wpb_shortcodes_custom_css','.vc_custom_1630101076514{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630625641518{background-color: #a4b0bc !important;}.vc_custom_1630097788927{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(414,273,'_wpb_shortcodes_custom_css','.vc_custom_1630101076514{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630709460446{background-color: #a4b0bc !important;}.vc_custom_1630709427284{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(415,274,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(416,275,'_wpb_shortcodes_custom_css','.vc_custom_1630709610747{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630709460446{background-color: #a4b0bc !important;}.vc_custom_1630709427284{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(417,276,'_wpb_shortcodes_custom_css','.vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630709460446{background-color: #a4b0bc !important;}.vc_custom_1630709427284{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(418,277,'_wpb_shortcodes_custom_css','.vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630709460446{background-color: #a4b0bc !important;}.vc_custom_1630709427284{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(419,278,'_wpb_shortcodes_custom_css','.vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630709460446{background-color: #a4b0bc !important;}.vc_custom_1630709427284{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(421,280,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(422,281,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(423,282,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(424,283,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(425,284,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(426,285,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(427,286,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(428,287,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(429,288,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(430,289,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(431,290,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(433,292,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(434,293,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(436,295,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(437,296,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(438,297,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(439,298,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(440,301,'_wp_attached_file','2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work.jpg'),
(441,301,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1331;s:6:\"height\";i:749;s:4:\"file\";s:66:\"2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:66:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work-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:67:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work-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:66:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work-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:66:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(442,302,'_wp_attached_file','2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcreteBridge.jpg'),
(443,302,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1331;s:6:\"height\";i:749;s:4:\"file\";s:81:\"2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcreteBridge.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:81:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcreteBridge-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:82:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcreteBridge-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:81:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcreteBridge-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:81:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcreteBridge-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(444,303,'_wp_attached_file','2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcretePaths_Near_Trees_And_River.jpg'),
(445,303,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1188;s:6:\"height\";i:668;s:4:\"file\";s:101:\"2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcretePaths_Near_Trees_And_River.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:101:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcretePaths_Near_Trees_And_River-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:102:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcretePaths_Near_Trees_And_River-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:101:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcretePaths_Near_Trees_And_River-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:101:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcretePaths_Near_Trees_And_River-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(446,304,'_wp_attached_file','2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths.jpg'),
(447,304,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1229;s:6:\"height\";i:691;s:4:\"file\";s:72:\"2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:72:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths-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:73:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths-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:72:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths-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:72:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(448,305,'_wp_attached_file','2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths_Blue_Skies.jpg'),
(449,305,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1331;s:6:\"height\";i:749;s:4:\"file\";s:83:\"2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths_Blue_Skies.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:83:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths_Blue_Skies-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:84:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths_Blue_Skies-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:83:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths_Blue_Skies-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:83:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths_Blue_Skies-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(450,306,'_wp_attached_file','2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths_ConvergingPaths.jpg'),
(451,306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1331;s:6:\"height\";i:749;s:4:\"file\";s:88:\"2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths_ConvergingPaths.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:88:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths_ConvergingPaths-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:89:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths_ConvergingPaths-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:88:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths_ConvergingPaths-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:88:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths_ConvergingPaths-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(452,307,'_wp_attached_file','2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work-5.jpg'),
(453,307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1126;s:6:\"height\";i:633;s:4:\"file\";s:68:\"2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work-5.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:68:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work-5-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:69:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work-5-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:68:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work-5-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:68:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work-5-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(454,308,'_wp_attached_file','2021/10/Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite.jpg'),
(455,308,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1434;s:6:\"height\";i:807;s:4:\"file\";s:73:\"2021/10/Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:73:\"Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite-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:74:\"Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite-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:73:\"Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite-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:73:\"Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(456,309,'_wp_attached_file','2021/10/Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite_DiamondLakeBLVD.jpg'),
(457,309,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1331;s:6:\"height\";i:749;s:4:\"file\";s:89:\"2021/10/Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite_DiamondLakeBLVD.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:89:\"Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite_DiamondLakeBLVD-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:90:\"Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite_DiamondLakeBLVD-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:89:\"Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite_DiamondLakeBLVD-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:89:\"Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite_DiamondLakeBLVD-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(458,310,'_wp_attached_file','2021/10/Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite-_FinishedParkingLot.jpg'),
(459,310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1434;s:6:\"height\";i:807;s:4:\"file\";s:93:\"2021/10/Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite-_FinishedParkingLot.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:93:\"Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite-_FinishedParkingLot-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:94:\"Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite-_FinishedParkingLot-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:93:\"Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite-_FinishedParkingLot-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:93:\"Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite-_FinishedParkingLot-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(460,311,'_wp_attached_file','2021/10/Concrete_Builders_Supply_Facility.jpg'),
(461,311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1434;s:6:\"height\";i:807;s:4:\"file\";s:45:\"2021/10/Concrete_Builders_Supply_Facility.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Concrete_Builders_Supply_Facility-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:46:\"Concrete_Builders_Supply_Facility-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:45:\"Concrete_Builders_Supply_Facility-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:45:\"Concrete_Builders_Supply_Facility-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(462,312,'_wp_attached_file','2021/10/Concrete_Builders_Supply_Facility_Located_Off-HWY138.jpg'),
(463,312,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1229;s:6:\"height\";i:691;s:4:\"file\";s:64:\"2021/10/Concrete_Builders_Supply_Facility_Located_Off-HWY138.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Concrete_Builders_Supply_Facility_Located_Off-HWY138-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:65:\"Concrete_Builders_Supply_Facility_Located_Off-HWY138-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:64:\"Concrete_Builders_Supply_Facility_Located_Off-HWY138-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:64:\"Concrete_Builders_Supply_Facility_Located_Off-HWY138-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(464,313,'_wp_attached_file','2021/10/Concrete_Builders_Supply_Facility_Location.jpg'),
(465,313,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1331;s:6:\"height\";i:749;s:4:\"file\";s:54:\"2021/10/Concrete_Builders_Supply_Facility_Location.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"Concrete_Builders_Supply_Facility_Location-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:55:\"Concrete_Builders_Supply_Facility_Location-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:54:\"Concrete_Builders_Supply_Facility_Location-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:54:\"Concrete_Builders_Supply_Facility_Location-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(466,314,'_wp_attached_file','2021/10/Concrete_Builders_Supply_Facility_SideDoor_Location.jpg'),
(467,314,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1434;s:6:\"height\";i:807;s:4:\"file\";s:63:\"2021/10/Concrete_Builders_Supply_Facility_SideDoor_Location.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Concrete_Builders_Supply_Facility_SideDoor_Location-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:64:\"Concrete_Builders_Supply_Facility_SideDoor_Location-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:63:\"Concrete_Builders_Supply_Facility_SideDoor_Location-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:63:\"Concrete_Builders_Supply_Facility_SideDoor_Location-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(468,315,'_wp_attached_file','2021/10/Concrete_Builders_Supply_Facility_TopDown_Location.jpg'),
(469,315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1229;s:6:\"height\";i:691;s:4:\"file\";s:62:\"2021/10/Concrete_Builders_Supply_Facility_TopDown_Location.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Concrete_Builders_Supply_Facility_TopDown_Location-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:63:\"Concrete_Builders_Supply_Facility_TopDown_Location-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:62:\"Concrete_Builders_Supply_Facility_TopDown_Location-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:62:\"Concrete_Builders_Supply_Facility_TopDown_Location-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(470,316,'_wp_attached_file','2021/10/Concrete_Builders_Supply_Facility_TopDown_Location_dronephoto.jpg'),
(471,316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1229;s:6:\"height\";i:776;s:4:\"file\";s:73:\"2021/10/Concrete_Builders_Supply_Facility_TopDown_Location_dronephoto.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:73:\"Concrete_Builders_Supply_Facility_TopDown_Location_dronephoto-300x189.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:74:\"Concrete_Builders_Supply_Facility_TopDown_Location_dronephoto-1024x647.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:647;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:73:\"Concrete_Builders_Supply_Facility_TopDown_Location_dronephoto-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:73:\"Concrete_Builders_Supply_Facility_TopDown_Location_dronephoto-768x485.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:485;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:{}}}'),
(472,317,'_wp_attached_file','2021/10/Concrete_Builders_Supply_Location.jpg'),
(473,317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1331;s:6:\"height\";i:749;s:4:\"file\";s:45:\"2021/10/Concrete_Builders_Supply_Location.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Concrete_Builders_Supply_Location-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:46:\"Concrete_Builders_Supply_Location-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:45:\"Concrete_Builders_Supply_Location-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:45:\"Concrete_Builders_Supply_Location-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(474,318,'_wp_attached_file','2021/10/Guido_Construction_Blue_Dump_Truck.jpg'),
(475,318,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1434;s:6:\"height\";i:805;s:4:\"file\";s:46:\"2021/10/Guido_Construction_Blue_Dump_Truck.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Guido_Construction_Blue_Dump_Truck-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Guido_Construction_Blue_Dump_Truck-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Guido_Construction_Blue_Dump_Truck-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:46:\"Guido_Construction_Blue_Dump_Truck-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;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:{}}}'),
(476,319,'_wp_attached_file','2021/10/Guido_Construction_Concrete_Bridge_work_Drone_photo.jpg'),
(477,319,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1259;s:6:\"height\";i:708;s:4:\"file\";s:63:\"2021/10/Guido_Construction_Concrete_Bridge_work_Drone_photo.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Guido_Construction_Concrete_Bridge_work_Drone_photo-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:64:\"Guido_Construction_Concrete_Bridge_work_Drone_photo-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:63:\"Guido_Construction_Concrete_Bridge_work_Drone_photo-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:63:\"Guido_Construction_Concrete_Bridge_work_Drone_photo-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(478,320,'_wp_attached_file','2021/10/Guido_Construction_concrete_pour_FillingConcretePump.jpg'),
(479,320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1229;s:6:\"height\";i:691;s:4:\"file\";s:64:\"2021/10/Guido_Construction_concrete_pour_FillingConcretePump.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Guido_Construction_concrete_pour_FillingConcretePump-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:65:\"Guido_Construction_concrete_pour_FillingConcretePump-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:64:\"Guido_Construction_concrete_pour_FillingConcretePump-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:64:\"Guido_Construction_concrete_pour_FillingConcretePump-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(480,321,'_wp_attached_file','2021/10/Guido_Construction_concrete_USFS_jobsite_ConcreteFoundation.jpg'),
(481,321,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:71:\"2021/10/Guido_Construction_concrete_USFS_jobsite_ConcreteFoundation.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:71:\"Guido_Construction_concrete_USFS_jobsite_ConcreteFoundation-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:71:\"Guido_Construction_concrete_USFS_jobsite_ConcreteFoundation-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:71:\"Guido_Construction_concrete_USFS_jobsite_ConcreteFoundation-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(482,322,'_wp_attached_file','2021/10/Guido_Construction_Dump_Truck_Orange.jpg'),
(483,322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1434;s:6:\"height\";i:805;s:4:\"file\";s:48:\"2021/10/Guido_Construction_Dump_Truck_Orange.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Guido_Construction_Dump_Truck_Orange-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Guido_Construction_Dump_Truck_Orange-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Guido_Construction_Dump_Truck_Orange-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Guido_Construction_Dump_Truck_Orange-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;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:{}}}'),
(484,323,'_wp_attached_file','2021/10/Guido_Construction_flatbed_Truck_blue.jpg'),
(485,323,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1229;s:6:\"height\";i:690;s:4:\"file\";s:49:\"2021/10/Guido_Construction_flatbed_Truck_blue.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Guido_Construction_flatbed_Truck_blue-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Guido_Construction_flatbed_Truck_blue-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Guido_Construction_flatbed_Truck_blue-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:49:\"Guido_Construction_flatbed_Truck_blue-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;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:{}}}'),
(486,324,'_wp_attached_file','2021/10/Guido_Construction_flatbed_Truck_blue_worktruck.jpg'),
(487,324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1229;s:6:\"height\";i:690;s:4:\"file\";s:59:\"2021/10/Guido_Construction_flatbed_Truck_blue_worktruck.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Guido_Construction_flatbed_Truck_blue_worktruck-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Guido_Construction_flatbed_Truck_blue_worktruck-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Guido_Construction_flatbed_Truck_blue_worktruck-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:59:\"Guido_Construction_flatbed_Truck_blue_worktruck-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;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:{}}}'),
(488,325,'_wp_attached_file','2021/10/Guido_Construction_rebar_USFS_ConcreteFoundationPour_ConcretePour.jpg'),
(489,325,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1126;s:6:\"height\";i:633;s:4:\"file\";s:77:\"2021/10/Guido_Construction_rebar_USFS_ConcreteFoundationPour_ConcretePour.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:77:\"Guido_Construction_rebar_USFS_ConcreteFoundationPour_ConcretePour-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:78:\"Guido_Construction_rebar_USFS_ConcreteFoundationPour_ConcretePour-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:77:\"Guido_Construction_rebar_USFS_ConcreteFoundationPour_ConcretePour-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:77:\"Guido_Construction_rebar_USFS_ConcreteFoundationPour_ConcretePour-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(490,326,'_wp_attached_file','2021/10/Guido_Construction_rebar_USFS_jobsite.jpg'),
(491,326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1126;s:6:\"height\";i:633;s:4:\"file\";s:49:\"2021/10/Guido_Construction_rebar_USFS_jobsite.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Guido_Construction_rebar_USFS_jobsite-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:50:\"Guido_Construction_rebar_USFS_jobsite-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:49:\"Guido_Construction_rebar_USFS_jobsite-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:49:\"Guido_Construction_rebar_USFS_jobsite-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(492,327,'_wp_attached_file','2021/10/Guido_Construction_rebar_USFS_jobsite_ConcretePour.jpg'),
(493,327,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1126;s:6:\"height\";i:633;s:4:\"file\";s:62:\"2021/10/Guido_Construction_rebar_USFS_jobsite_ConcretePour.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Guido_Construction_rebar_USFS_jobsite_ConcretePour-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:63:\"Guido_Construction_rebar_USFS_jobsite_ConcretePour-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:62:\"Guido_Construction_rebar_USFS_jobsite_ConcretePour-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:62:\"Guido_Construction_rebar_USFS_jobsite_ConcretePour-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(494,328,'_wp_attached_file','2021/10/Guido_Construction_rebar_USFS_jobsite_men-working.jpg'),
(495,328,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:61:\"2021/10/Guido_Construction_rebar_USFS_jobsite_men-working.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Guido_Construction_rebar_USFS_jobsite_men-working-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Guido_Construction_rebar_USFS_jobsite_men-working-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:61:\"Guido_Construction_rebar_USFS_jobsite_men-working-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(496,329,'_wp_attached_file','2021/10/Guido_Construction_rebar_USFS_jobsite_rebartie.jpg'),
(497,329,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1126;s:6:\"height\";i:633;s:4:\"file\";s:58:\"2021/10/Guido_Construction_rebar_USFS_jobsite_rebartie.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Guido_Construction_rebar_USFS_jobsite_rebartie-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:59:\"Guido_Construction_rebar_USFS_jobsite_rebartie-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:58:\"Guido_Construction_rebar_USFS_jobsite_rebartie-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:58:\"Guido_Construction_rebar_USFS_jobsite_rebartie-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(498,330,'_wp_attached_file','2021/10/Guido_Construction_rebar_USFS_jobsite-Men_In_hardhat.jpg'),
(499,330,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1126;s:6:\"height\";i:633;s:4:\"file\";s:64:\"2021/10/Guido_Construction_rebar_USFS_jobsite-Men_In_hardhat.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Guido_Construction_rebar_USFS_jobsite-Men_In_hardhat-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:65:\"Guido_Construction_rebar_USFS_jobsite-Men_In_hardhat-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:64:\"Guido_Construction_rebar_USFS_jobsite-Men_In_hardhat-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:64:\"Guido_Construction_rebar_USFS_jobsite-Men_In_hardhat-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(500,331,'_wp_attached_file','2021/10/GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido.jpg'),
(501,331,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:68:\"2021/10/GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:68:\"GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:70:\"GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido-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:68:\"GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;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:{}}}'),
(502,332,'_wp_attached_file','2021/10/GuidoConstruction_Co-Owner_DorenaGuido-1.jpg'),
(503,332,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:52:\"2021/10/GuidoConstruction_Co-Owner_DorenaGuido-1.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"GuidoConstruction_Co-Owner_DorenaGuido-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"GuidoConstruction_Co-Owner_DorenaGuido-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"GuidoConstruction_Co-Owner_DorenaGuido-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:52:\"GuidoConstruction_Co-Owner_DorenaGuido-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;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:{}}}'),
(504,333,'_wp_attached_file','2021/10/GuidoConstruction_Owner_Headshot_DarbyGuido.jpg'),
(505,333,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:55:\"2021/10/GuidoConstruction_Owner_Headshot_DarbyGuido.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"GuidoConstruction_Owner_Headshot_DarbyGuido-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"GuidoConstruction_Owner_Headshot_DarbyGuido-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"GuidoConstruction_Owner_Headshot_DarbyGuido-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:55:\"GuidoConstruction_Owner_Headshot_DarbyGuido-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;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:{}}}'),
(506,334,'_wp_attached_file','2021/10/White-Verticle-Guido-Construction-Icon.png'),
(507,334,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:319;s:6:\"height\";i:331;s:4:\"file\";s:50:\"2021/10/White-Verticle-Guido-Construction-Icon.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"White-Verticle-Guido-Construction-Icon-289x300.png\";s:5:\"width\";i:289;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"White-Verticle-Guido-Construction-Icon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(508,335,'_wp_attached_file','2021/10/Guido-Construction-Icon.png'),
(509,335,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:189;s:6:\"height\";i:208;s:4:\"file\";s:35:\"2021/10/Guido-Construction-Icon.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Guido-Construction-Icon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(510,336,'_wp_attached_file','2021/10/Horizontal-Guido-Construction-Icon.png'),
(511,336,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:514;s:6:\"height\";i:207;s:4:\"file\";s:46:\"2021/10/Horizontal-Guido-Construction-Icon.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Horizontal-Guido-Construction-Icon-300x121.png\";s:5:\"width\";i:300;s:6:\"height\";i:121;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Horizontal-Guido-Construction-Icon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(512,337,'_wp_attached_file','2021/10/Vertical-Guido-Construction-Icon.png'),
(513,337,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:319;s:6:\"height\";i:331;s:4:\"file\";s:44:\"2021/10/Vertical-Guido-Construction-Icon.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Vertical-Guido-Construction-Icon-289x300.png\";s:5:\"width\";i:289;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Vertical-Guido-Construction-Icon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(514,338,'_wp_attached_file','2021/10/White-Icon-GC.png'),
(515,338,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:189;s:6:\"height\";i:208;s:4:\"file\";s:25:\"2021/10/White-Icon-GC.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"White-Icon-GC-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(516,339,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(517,340,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(518,341,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(519,342,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(520,343,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(521,344,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(522,345,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(523,346,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(524,347,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(525,348,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(526,349,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(527,60,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:2:{s:29:\"1758674161122-5b06b169-256c-7\";a:3:{s:3:\"tag\";s:21:\"vc_masonry_media_grid\";s:4:\"atts\";a:4:{s:3:\"css\";s:0:\"\";s:25:\"initial_loading_animation\";s:6:\"fadeIn\";s:7:\"grid_id\";s:36:\"vc_gid:1758674161122-5b06b169-256c-7\";s:7:\"include\";s:11:\"583,582,581\";}s:7:\"content\";s:0:\"\";}s:29:\"1758674161125-1ea00e90-3173-9\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:4:{s:13:\"element_width\";s:1:\"2\";s:25:\"initial_loading_animation\";s:8:\"fadeInUp\";s:7:\"grid_id\";s:36:\"vc_gid:1758674161125-1ea00e90-3173-9\";s:7:\"include\";s:23:\"271,268,310,307,359,458\";}s:7:\"content\";s:0:\"\";}}}}'),
(528,350,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(529,351,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(530,352,'_wp_attached_file','2021/10/USFS_photography_Rebar_BuildingReinforcement_Structuralconcrete_Workers_Topdown.jpg'),
(531,352,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1126;s:6:\"height\";i:633;s:4:\"file\";s:91:\"2021/10/USFS_photography_Rebar_BuildingReinforcement_Structuralconcrete_Workers_Topdown.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:91:\"USFS_photography_Rebar_BuildingReinforcement_Structuralconcrete_Workers_Topdown-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:92:\"USFS_photography_Rebar_BuildingReinforcement_Structuralconcrete_Workers_Topdown-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:91:\"USFS_photography_Rebar_BuildingReinforcement_Structuralconcrete_Workers_Topdown-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:91:\"USFS_photography_Rebar_BuildingReinforcement_Structuralconcrete_Workers_Topdown-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(532,353,'_wp_attached_file','2021/10/USFS_photography_FoundationPouring_Concrete_Work.jpg'),
(533,353,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1126;s:6:\"height\";i:633;s:4:\"file\";s:60:\"2021/10/USFS_photography_FoundationPouring_Concrete_Work.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"USFS_photography_FoundationPouring_Concrete_Work-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:61:\"USFS_photography_FoundationPouring_Concrete_Work-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:60:\"USFS_photography_FoundationPouring_Concrete_Work-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:60:\"USFS_photography_FoundationPouring_Concrete_Work-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(534,354,'_wp_attached_file','2021/10/USFS_photography_ConcreteFoundation_FoundationPour_Concrete_Work.jpg'),
(535,354,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1126;s:6:\"height\";i:633;s:4:\"file\";s:76:\"2021/10/USFS_photography_ConcreteFoundation_FoundationPour_Concrete_Work.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:76:\"USFS_photography_ConcreteFoundation_FoundationPour_Concrete_Work-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:77:\"USFS_photography_ConcreteFoundation_FoundationPour_Concrete_Work-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:76:\"USFS_photography_ConcreteFoundation_FoundationPour_Concrete_Work-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:76:\"USFS_photography_ConcreteFoundation_FoundationPour_Concrete_Work-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(536,355,'_wp_attached_file','2021/10/USFS_photography_foundation_crew_smoothingConcrete_Concrete_Work.jpg'),
(537,355,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1126;s:6:\"height\";i:633;s:4:\"file\";s:76:\"2021/10/USFS_photography_foundation_crew_smoothingConcrete_Concrete_Work.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:76:\"USFS_photography_foundation_crew_smoothingConcrete_Concrete_Work-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:77:\"USFS_photography_foundation_crew_smoothingConcrete_Concrete_Work-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:76:\"USFS_photography_foundation_crew_smoothingConcrete_Concrete_Work-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:76:\"USFS_photography_foundation_crew_smoothingConcrete_Concrete_Work-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(538,356,'_wp_attached_file','2021/10/USFS_photography_TopDownJobsite_Foundation_StructuralPour_Concrete_Work.jpg'),
(539,356,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1126;s:6:\"height\";i:633;s:4:\"file\";s:83:\"2021/10/USFS_photography_TopDownJobsite_Foundation_StructuralPour_Concrete_Work.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:83:\"USFS_photography_TopDownJobsite_Foundation_StructuralPour_Concrete_Work-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:84:\"USFS_photography_TopDownJobsite_Foundation_StructuralPour_Concrete_Work-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:83:\"USFS_photography_TopDownJobsite_Foundation_StructuralPour_Concrete_Work-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:83:\"USFS_photography_TopDownJobsite_Foundation_StructuralPour_Concrete_Work-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(540,357,'_wp_attached_file','2021/10/USFS_photography_FoundationStructuralPour_Concrete_Work.jpg'),
(541,357,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1434;s:6:\"height\";i:613;s:4:\"file\";s:67:\"2021/10/USFS_photography_FoundationStructuralPour_Concrete_Work.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:67:\"USFS_photography_FoundationStructuralPour_Concrete_Work-300x128.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:68:\"USFS_photography_FoundationStructuralPour_Concrete_Work-1024x438.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"USFS_photography_FoundationStructuralPour_Concrete_Work-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:67:\"USFS_photography_FoundationStructuralPour_Concrete_Work-768x328.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:328;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:{}}}'),
(542,358,'_wp_attached_file','2021/10/USFS_photography_WorkersPouringConcrete_Foundation_Concrete_Work-8.jpg'),
(543,358,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1126;s:6:\"height\";i:633;s:4:\"file\";s:78:\"2021/10/USFS_photography_WorkersPouringConcrete_Foundation_Concrete_Work-8.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:78:\"USFS_photography_WorkersPouringConcrete_Foundation_Concrete_Work-8-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:79:\"USFS_photography_WorkersPouringConcrete_Foundation_Concrete_Work-8-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:78:\"USFS_photography_WorkersPouringConcrete_Foundation_Concrete_Work-8-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:78:\"USFS_photography_WorkersPouringConcrete_Foundation_Concrete_Work-8-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(544,359,'_wp_attached_file','2021/10/USFS_photography_FoundationPour_Concrete_Work_foundation_ReinforcedStructure_StructuralPour.jpg'),
(545,359,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1229;s:6:\"height\";i:691;s:4:\"file\";s:103:\"2021/10/USFS_photography_FoundationPour_Concrete_Work_foundation_ReinforcedStructure_StructuralPour.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:103:\"USFS_photography_FoundationPour_Concrete_Work_foundation_ReinforcedStructure_StructuralPour-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:104:\"USFS_photography_FoundationPour_Concrete_Work_foundation_ReinforcedStructure_StructuralPour-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:103:\"USFS_photography_FoundationPour_Concrete_Work_foundation_ReinforcedStructure_StructuralPour-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:103:\"USFS_photography_FoundationPour_Concrete_Work_foundation_ReinforcedStructure_StructuralPour-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(546,360,'_wp_attached_file','2021/10/USFS_photography_FoundationPour_Concrete_Work.jpg'),
(547,360,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:699;s:4:\"file\";s:57:\"2021/10/USFS_photography_FoundationPour_Concrete_Work.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"USFS_photography_FoundationPour_Concrete_Work-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"USFS_photography_FoundationPour_Concrete_Work-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:57:\"USFS_photography_FoundationPour_Concrete_Work-768x524.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:524;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:{}}}'),
(548,361,'_wp_attached_file','2021/10/USFS_photography_ConcretePour_Foundation_-BasementPour_Work.jpg'),
(549,361,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1126;s:6:\"height\";i:633;s:4:\"file\";s:71:\"2021/10/USFS_photography_ConcretePour_Foundation_-BasementPour_Work.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:71:\"USFS_photography_ConcretePour_Foundation_-BasementPour_Work-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:72:\"USFS_photography_ConcretePour_Foundation_-BasementPour_Work-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:71:\"USFS_photography_ConcretePour_Foundation_-BasementPour_Work-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:71:\"USFS_photography_ConcretePour_Foundation_-BasementPour_Work-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(550,362,'_wp_attached_file','2021/10/Guido_Construction_concrete_USFS_jobsite_ConcreteFoundation-1.jpg'),
(551,362,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:73:\"2021/10/Guido_Construction_concrete_USFS_jobsite_ConcreteFoundation-1.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:73:\"Guido_Construction_concrete_USFS_jobsite_ConcreteFoundation-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:73:\"Guido_Construction_concrete_USFS_jobsite_ConcreteFoundation-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:73:\"Guido_Construction_concrete_USFS_jobsite_ConcreteFoundation-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(552,363,'_wp_attached_file','2021/10/Guido_Construction_concrete_pour_FillingConcretePump-1.jpg'),
(553,363,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1229;s:6:\"height\";i:691;s:4:\"file\";s:66:\"2021/10/Guido_Construction_concrete_pour_FillingConcretePump-1.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:66:\"Guido_Construction_concrete_pour_FillingConcretePump-1-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:67:\"Guido_Construction_concrete_pour_FillingConcretePump-1-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:66:\"Guido_Construction_concrete_pour_FillingConcretePump-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:66:\"Guido_Construction_concrete_pour_FillingConcretePump-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(554,364,'_wp_attached_file','2021/10/Guido_Construction_rebar_USFS_jobsite_ConcretePour-1.jpg'),
(555,364,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1126;s:6:\"height\";i:633;s:4:\"file\";s:64:\"2021/10/Guido_Construction_rebar_USFS_jobsite_ConcretePour-1.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Guido_Construction_rebar_USFS_jobsite_ConcretePour-1-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:65:\"Guido_Construction_rebar_USFS_jobsite_ConcretePour-1-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:64:\"Guido_Construction_rebar_USFS_jobsite_ConcretePour-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:64:\"Guido_Construction_rebar_USFS_jobsite_ConcretePour-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(556,365,'_wp_attached_file','2021/10/Guido_Construction_rebar_USFS_ConcreteFoundationPour_ConcretePour-1.jpg'),
(557,365,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1126;s:6:\"height\";i:633;s:4:\"file\";s:79:\"2021/10/Guido_Construction_rebar_USFS_ConcreteFoundationPour_ConcretePour-1.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:79:\"Guido_Construction_rebar_USFS_ConcreteFoundationPour_ConcretePour-1-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:80:\"Guido_Construction_rebar_USFS_ConcreteFoundationPour_ConcretePour-1-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:79:\"Guido_Construction_rebar_USFS_ConcreteFoundationPour_ConcretePour-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:79:\"Guido_Construction_rebar_USFS_ConcreteFoundationPour_ConcretePour-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(558,366,'_wp_attached_file','2021/10/USFS_photography_building_Structure_Rebar_FoundationPour.jpg'),
(559,366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1126;s:6:\"height\";i:633;s:4:\"file\";s:68:\"2021/10/USFS_photography_building_Structure_Rebar_FoundationPour.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:68:\"USFS_photography_building_Structure_Rebar_FoundationPour-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:69:\"USFS_photography_building_Structure_Rebar_FoundationPour-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:68:\"USFS_photography_building_Structure_Rebar_FoundationPour-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:68:\"USFS_photography_building_Structure_Rebar_FoundationPour-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(560,367,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(561,368,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(562,369,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(563,370,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(564,371,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(565,372,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(566,373,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(567,374,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(568,375,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(569,376,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(570,377,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(571,378,'_wp_attached_file','2021/10/StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction.jpg'),
(572,378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1259;s:6:\"height\";i:708;s:4:\"file\";s:90:\"2021/10/StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:90:\"StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction-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:91:\"StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction-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:90:\"StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction-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:90:\"StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(573,379,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(574,380,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(575,381,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(576,382,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(577,383,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(578,384,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(579,385,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(580,386,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(581,387,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(582,388,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(583,389,'_wpb_shortcodes_custom_css','.vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630709460446{background-color: #a4b0bc !important;}.vc_custom_1630709427284{background-color: #141a3c !important;}.vc_custom_1630097772279{background-color: #141a3c !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(587,391,'_wp_attached_file','2021/10/Roseburg-Oregon-Gudio_Construction-best-concrete-company.jpg'),
(588,391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1368;s:6:\"height\";i:770;s:4:\"file\";s:68:\"2021/10/Roseburg-Oregon-Gudio_Construction-best-concrete-company.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:68:\"Roseburg-Oregon-Gudio_Construction-best-concrete-company-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:69:\"Roseburg-Oregon-Gudio_Construction-best-concrete-company-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:68:\"Roseburg-Oregon-Gudio_Construction-best-concrete-company-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:68:\"Roseburg-Oregon-Gudio_Construction-best-concrete-company-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(590,393,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(591,394,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(592,395,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(593,396,'_wpb_shortcodes_custom_css','.vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630709460446{background-color: #a4b0bc !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(594,397,'_wpb_shortcodes_custom_css','.vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630709460446{background-color: #a4b0bc !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(595,398,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(596,399,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(597,400,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(598,401,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(599,402,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(600,403,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(601,404,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(603,406,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(604,407,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(605,408,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(606,409,'_wpb_shortcodes_custom_css','.vc_custom_1630358366404{background-color: #a4b0bc !important;}'),
(607,410,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(608,411,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(609,412,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(610,413,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(611,414,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(612,415,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(631,423,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(632,424,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(633,41,'_oembed_c3d0626ade7dcb7fa8a226f260cb006f','<iframe title=\"Guido Construction, Inc. Promotional Video\" width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/bMKLX3teORY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),
(634,41,'_oembed_time_c3d0626ade7dcb7fa8a226f260cb006f','1635886331'),
(635,425,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(636,426,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(637,427,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(638,428,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(639,59,'_oembed_a4830c5806b877ce1e1506cc0c3044ac','<iframe title=\"Guido Construction, Inc. USFC Jobsite Video Roseburg, Oregon\" width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/xCCtd0rxNJU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),
(640,59,'_oembed_time_a4830c5806b877ce1e1506cc0c3044ac','1635888004'),
(641,429,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(643,431,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(645,432,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(646,433,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(647,59,'_oembed_4f733efadf87dc5893eac13c90938eef','<iframe title=\"Guido Construction, Inc. USFC Jobsite Video Roseburg, Oregon\" width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/gGz8hIEEhqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),
(648,59,'_oembed_time_4f733efadf87dc5893eac13c90938eef','1636572344'),
(649,434,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(650,435,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(651,436,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(653,439,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(654,440,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(655,441,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(657,443,'_wp_attached_file','2021/11/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcretePaths_Near_Trees_And_River.jpg'),
(658,443,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1188;s:6:\"height\";i:668;s:4:\"file\";s:101:\"2021/11/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcretePaths_Near_Trees_And_River.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:101:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcretePaths_Near_Trees_And_River-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:102:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcretePaths_Near_Trees_And_River-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:101:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcretePaths_Near_Trees_And_River-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:101:\"Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcretePaths_Near_Trees_And_River-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(659,444,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(660,445,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(662,447,'_wpb_shortcodes_custom_css','.vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630709460446{background-color: #a4b0bc !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(663,448,'_wpb_shortcodes_custom_css','.vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630709460446{background-color: #a4b0bc !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(664,449,'_wpb_shortcodes_custom_css','.vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630709460446{background-color: #a4b0bc !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(665,450,'_wpb_shortcodes_custom_css','.vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630709460446{background-color: #a4b0bc !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(666,451,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(667,452,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(668,453,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(669,454,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(670,455,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(671,456,'_wp_attached_file','2021/11/Guido_Construction_Roseburg_Oregon_ConcreteWork_pano_USFS.png'),
(672,456,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:819;s:6:\"height\";i:565;s:4:\"file\";s:69:\"2021/11/Guido_Construction_Roseburg_Oregon_ConcreteWork_pano_USFS.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:69:\"Guido_Construction_Roseburg_Oregon_ConcreteWork_pano_USFS-300x207.png\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:69:\"Guido_Construction_Roseburg_Oregon_ConcreteWork_pano_USFS-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:69:\"Guido_Construction_Roseburg_Oregon_ConcreteWork_pano_USFS-768x530.png\";s:5:\"width\";i:768;s:6:\"height\";i:530;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:{}}}'),
(673,457,'_wp_attached_file','2021/11/Roseburg_National_Cemetary_Brick_Concrete_-2.png'),
(674,457,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:930;s:6:\"height\";i:523;s:4:\"file\";s:56:\"2021/11/Roseburg_National_Cemetary_Brick_Concrete_-2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Roseburg_National_Cemetary_Brick_Concrete_-2-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"Roseburg_National_Cemetary_Brick_Concrete_-2-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:56:\"Roseburg_National_Cemetary_Brick_Concrete_-2-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(675,458,'_wp_attached_file','2021/11/Roseburg_National_Cemetary_Brick_Concrete_-1.png'),
(676,458,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:755;s:6:\"height\";i:517;s:4:\"file\";s:56:\"2021/11/Roseburg_National_Cemetary_Brick_Concrete_-1.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Roseburg_National_Cemetary_Brick_Concrete_-1-300x205.png\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"Roseburg_National_Cemetary_Brick_Concrete_-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(677,459,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(678,460,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(679,461,'_wpb_shortcodes_custom_css','.vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630709460446{background-color: #a4b0bc !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(680,462,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(681,463,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(682,464,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(683,465,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(684,466,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(687,468,'_wp_attached_file','2021/11/Roseburg_National_Cemetary_Top_Down_Image_BrickandStoneWork.png'),
(688,468,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:838;s:6:\"height\";i:471;s:4:\"file\";s:71:\"2021/11/Roseburg_National_Cemetary_Top_Down_Image_BrickandStoneWork.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:71:\"Roseburg_National_Cemetary_Top_Down_Image_BrickandStoneWork-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:71:\"Roseburg_National_Cemetary_Top_Down_Image_BrickandStoneWork-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:71:\"Roseburg_National_Cemetary_Top_Down_Image_BrickandStoneWork-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;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:{}}}'),
(689,469,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(690,470,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(692,472,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(693,473,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(697,477,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(698,478,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(699,479,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(700,480,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(701,481,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(702,482,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(703,484,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(704,485,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(705,486,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(706,487,'_wpb_shortcodes_custom_css','.vc_custom_1630101360771{background-color: #a4b0bc !important;}.vc_custom_1630104755379{background-color: #141a3c !important;}'),
(707,488,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(709,490,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(710,491,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(711,492,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(712,494,'_wpb_shortcodes_custom_css','.vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630709460446{background-color: #a4b0bc !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(717,498,'_edit_lock','1655244019:1'),
(718,498,'_edit_last','1'),
(719,498,'_wp_page_template','default'),
(720,498,'_wpb_vc_js_status','false'),
(721,502,'_wpb_shortcodes_custom_css','.vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630709460446{background-color: #a4b0bc !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(722,503,'_wpb_shortcodes_custom_css','.vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630709460446{background-color: #a4b0bc !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(723,504,'_wpb_shortcodes_custom_css','.vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}.vc_custom_1630709460446{background-color: #a4b0bc !important;}.vc_custom_1630709344654{background-color: #316fbc !important;}'),
(724,506,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(725,507,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(726,508,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(727,22,'_hash','ab5625af9898b4e227b69b2c4a9001d78e7c787e'),
(728,125,'_hash','6ed22551387e31690b70e9a46065fd7fabde7b9b'),
(729,509,'_wp_attached_file','2024/06/Guido-Construction-Medford-Concrete-1.jpg'),
(730,509,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:49:\"2024/06/Guido-Construction-Medford-Concrete-1.jpg\";s:8:\"filesize\";i:2417012;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14618;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166167;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6286;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89754;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-1-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:338457;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"PP-101\";s:7:\"caption\";s:7:\"default\";s:17:\"created_timestamp\";s:10:\"1717938671\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"6.5\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00033333333333333\";s:5:\"title\";s:7:\"default\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(731,510,'_wp_attached_file','2024/06/Guido-Construction-Medford-Concrete-2.jpg'),
(732,510,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:49:\"2024/06/Guido-Construction-Medford-Concrete-2.jpg\";s:8:\"filesize\";i:2435931;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14514;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-2-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167873;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6808;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-2-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87458;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-2-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:347358;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"PP-101\";s:7:\"caption\";s:7:\"default\";s:17:\"created_timestamp\";s:10:\"1717938690\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"6.5\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:7:\"default\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(733,511,'_wp_attached_file','2024/06/Guido-Construction-Medford-Concrete-3.jpg'),
(734,511,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:49:\"2024/06/Guido-Construction-Medford-Concrete-3.jpg\";s:8:\"filesize\";i:2603922;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-3-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19701;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-3-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203881;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9117;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-3-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114783;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-3-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:391419;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"PP-101\";s:7:\"caption\";s:7:\"default\";s:17:\"created_timestamp\";s:10:\"1717939257\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"6.5\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:19:\"0.00066666666666667\";s:5:\"title\";s:7:\"default\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(735,512,'_wp_attached_file','2024/06/Guido-Construction-Medford-Concrete-4.jpg'),
(736,512,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:49:\"2024/06/Guido-Construction-Medford-Concrete-4.jpg\";s:8:\"filesize\";i:2210246;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-4-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14397;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-4-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151862;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6344;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-4-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82740;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-4-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:307980;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"PP-101\";s:7:\"caption\";s:7:\"default\";s:17:\"created_timestamp\";s:10:\"1717938810\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"6.5\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:7:\"default\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(737,513,'_wp_attached_file','2024/06/Guido-Construction-Medford-Concrete-5.jpg'),
(738,513,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:49:\"2024/06/Guido-Construction-Medford-Concrete-5.jpg\";s:8:\"filesize\";i:2235044;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-5-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17884;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-5-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186575;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8579;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-5-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102731;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-5-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:365665;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"FC8482\";s:7:\"caption\";s:7:\"default\";s:17:\"created_timestamp\";s:10:\"1717993921\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"6.72\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:9:\"0.0003125\";s:5:\"title\";s:7:\"default\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(739,514,'_wp_attached_file','2024/06/Guido-Construction-Medford-Concrete-6.jpg'),
(740,514,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:49:\"2024/06/Guido-Construction-Medford-Concrete-6.jpg\";s:8:\"filesize\";i:2927357;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-6-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23910;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-6-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:250323;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11448;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-6-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137954;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-6-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:488918;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"FC8482\";s:7:\"caption\";s:7:\"default\";s:17:\"created_timestamp\";s:10:\"1717993940\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"6.72\";s:3:\"iso\";s:3:\"110\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:7:\"default\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(741,515,'_wp_attached_file','2024/06/Guido-Construction-Medford-Concrete-7.jpg'),
(742,515,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:49:\"2024/06/Guido-Construction-Medford-Concrete-7.jpg\";s:8:\"filesize\";i:2468678;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-7-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21524;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-7-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221872;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10236;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-7-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123509;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-7-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:430753;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"FC8482\";s:7:\"caption\";s:7:\"default\";s:17:\"created_timestamp\";s:10:\"1717993935\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"6.72\";s:3:\"iso\";s:3:\"120\";s:13:\"shutter_speed\";s:9:\"0.0003125\";s:5:\"title\";s:7:\"default\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(743,516,'_wp_attached_file','2024/06/Guido-Construction-Medford-Concrete-8.jpg'),
(744,516,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:49:\"2024/06/Guido-Construction-Medford-Concrete-8.jpg\";s:8:\"filesize\";i:1673274;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-8-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13252;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-8-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142380;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6552;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-8-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78706;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-8-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:275746;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"PP-101\";s:7:\"caption\";s:7:\"default\";s:17:\"created_timestamp\";s:10:\"1717938616\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"6.5\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00033333333333333\";s:5:\"title\";s:7:\"default\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(745,517,'_wp_attached_file','2024/06/Guido-Construction-Medford-Concrete-9.jpg'),
(746,517,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:49:\"2024/06/Guido-Construction-Medford-Concrete-9.jpg\";s:8:\"filesize\";i:3096791;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-9-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17134;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-9-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207493;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7941;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Medford-Concrete-9-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110186;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-9-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:426346;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"PP-101\";s:7:\"caption\";s:7:\"default\";s:17:\"created_timestamp\";s:10:\"1717939391\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"6.5\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:7:\"default\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(747,518,'_wp_attached_file','2024/06/Guido-Construction-Medford-Concrete-10.jpg'),
(748,518,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:50:\"2024/06/Guido-Construction-Medford-Concrete-10.jpg\";s:8:\"filesize\";i:1590297;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-10-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9888;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Guido-Construction-Medford-Concrete-10-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103388;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4731;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-10-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56332;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"Guido-Construction-Medford-Concrete-10-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211442;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"PP-101\";s:7:\"caption\";s:7:\"default\";s:17:\"created_timestamp\";s:10:\"1717938752\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"6.5\";s:3:\"iso\";s:3:\"210\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:7:\"default\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(749,519,'_wp_attached_file','2024/06/Guido-Construction-Medford-Concrete-11.jpg'),
(750,519,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:4:\"file\";s:50:\"2024/06/Guido-Construction-Medford-Concrete-11.jpg\";s:8:\"filesize\";i:2345966;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-11-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20024;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Guido-Construction-Medford-Concrete-11-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198029;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8690;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Guido-Construction-Medford-Concrete-11-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:311757;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"Guido-Construction-Medford-Concrete-11-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:379277;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"FC8482\";s:7:\"caption\";s:7:\"default\";s:17:\"created_timestamp\";s:10:\"1717994039\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"6.72\";s:3:\"iso\";s:3:\"110\";s:13:\"shutter_speed\";s:9:\"0.0003125\";s:5:\"title\";s:7:\"default\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(751,520,'_wp_attached_file','2024/06/Guido-Construction-Medford-Concrete-12.jpg'),
(752,520,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:4:\"file\";s:50:\"2024/06/Guido-Construction-Medford-Concrete-12.jpg\";s:8:\"filesize\";i:2148966;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-12-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15684;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Guido-Construction-Medford-Concrete-12-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159406;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8893;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Guido-Construction-Medford-Concrete-12-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:253213;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"Guido-Construction-Medford-Concrete-12-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:309451;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"FC8482\";s:7:\"caption\";s:7:\"default\";s:17:\"created_timestamp\";s:10:\"1717993981\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"6.72\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:7:\"default\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(753,521,'_wp_attached_file','2024/06/Guido-Construction-Medford-Concrete-13.jpg'),
(754,521,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:4:\"file\";s:50:\"2024/06/Guido-Construction-Medford-Concrete-13.jpg\";s:8:\"filesize\";i:2290114;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-13-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17762;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Guido-Construction-Medford-Concrete-13-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179693;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9735;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Guido-Construction-Medford-Concrete-13-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:284123;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"Guido-Construction-Medford-Concrete-13-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:347116;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"FC8482\";s:7:\"caption\";s:7:\"default\";s:17:\"created_timestamp\";s:10:\"1717994063\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"6.72\";s:3:\"iso\";s:3:\"120\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:7:\"default\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(755,522,'_wp_attached_file','2024/06/Guido-Construction-Medford-Concrete-14.jpg'),
(756,522,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:50:\"2024/06/Guido-Construction-Medford-Concrete-14.jpg\";s:8:\"filesize\";i:2678975;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-14-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23490;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Guido-Construction-Medford-Concrete-14-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:241855;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11310;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-14-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134471;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"Guido-Construction-Medford-Concrete-14-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:467227;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"FC8482\";s:7:\"caption\";s:7:\"default\";s:17:\"created_timestamp\";s:10:\"1717993942\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"6.72\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:7:\"default\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(757,523,'_wp_attached_file','2024/06/Guido-Construction-Medford-Concrete-15.jpg'),
(758,523,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1152;s:6:\"height\";i:2048;s:4:\"file\";s:50:\"2024/06/Guido-Construction-Medford-Concrete-15.jpg\";s:8:\"filesize\";i:2062380;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-15-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14369;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"Guido-Construction-Medford-Concrete-15-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139505;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Medford-Concrete-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7072;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Guido-Construction-Medford-Concrete-15-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222813;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"Guido-Construction-Medford-Concrete-15-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:271407;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"FC8482\";s:7:\"caption\";s:7:\"default\";s:17:\"created_timestamp\";s:10:\"1717993957\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"6.72\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0004\";s:5:\"title\";s:7:\"default\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(759,524,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(760,59,'_oembed_3703359ebf8d3b2697b3945299838ef4','<iframe title=\"Guido Construction - Medford Oregon Concrete Medians, Sidewalks, Faux Rock Wall, Crosswalks + More\" width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/4LfhzISHbWY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),
(761,59,'_oembed_time_3703359ebf8d3b2697b3945299838ef4','1719603683'),
(762,525,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(763,526,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(764,527,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(765,528,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(766,529,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(767,531,'_wp_attached_file','2024/07/DJI_20240703082928_0056_D.png'),
(768,531,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:37:\"2024/07/DJI_20240703082928_0056_D.png\";s:8:\"filesize\";i:978113;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"DJI_20240703082928_0056_D-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:105265;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"DJI_20240703082928_0056_D-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44247;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"DJI_20240703082928_0056_D-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:664123;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(769,532,'_wp_attached_file','2024/07/DJI_20240703082308_0039_D.png'),
(770,532,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:922;s:6:\"height\";i:519;s:4:\"file\";s:37:\"2024/07/DJI_20240703082308_0039_D.png\";s:8:\"filesize\";i:1030217;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"DJI_20240703082308_0039_D-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:124171;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"DJI_20240703082308_0039_D-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55190;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"DJI_20240703082308_0039_D-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:749319;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(771,533,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(772,534,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(773,535,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(774,536,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(775,537,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(776,538,'_wp_attached_file','2024/07/DJI_20240703092219_0133_D.png'),
(777,538,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:37:\"2024/07/DJI_20240703092219_0133_D.png\";s:8:\"filesize\";i:1010117;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"DJI_20240703092219_0133_D-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106304;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"DJI_20240703092219_0133_D-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46652;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"DJI_20240703092219_0133_D-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:681292;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(778,539,'_wp_attached_file','2024/07/DJI_20240703084551_0085_D.png'),
(779,539,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:37:\"2024/07/DJI_20240703084551_0085_D.png\";s:8:\"filesize\";i:900436;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"DJI_20240703084551_0085_D-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90885;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"DJI_20240703084551_0085_D-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38404;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"DJI_20240703084551_0085_D-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:593636;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(780,540,'_wp_attached_file','2024/07/DJI_20240703084939_0095_D.png'),
(781,540,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:37:\"2024/07/DJI_20240703084939_0095_D.png\";s:8:\"filesize\";i:801353;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"DJI_20240703084939_0095_D-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82185;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"DJI_20240703084939_0095_D-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36561;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"DJI_20240703084939_0095_D-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:516215;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(782,541,'_wp_attached_file','2024/07/DJI_20240703085055_0103_D.png'),
(783,541,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:37:\"2024/07/DJI_20240703085055_0103_D.png\";s:8:\"filesize\";i:901585;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"DJI_20240703085055_0103_D-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100417;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"DJI_20240703085055_0103_D-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42501;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"DJI_20240703085055_0103_D-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:616750;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(784,542,'_wp_attached_file','2024/07/DJI_20240703091550_0124_D.png'),
(785,542,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:37:\"2024/07/DJI_20240703091550_0124_D.png\";s:8:\"filesize\";i:1069830;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"DJI_20240703091550_0124_D-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116638;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"DJI_20240703091550_0124_D-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52396;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"DJI_20240703091550_0124_D-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:724395;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(786,543,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(787,545,'_wp_attached_file','2024/11/GuidoConstructionInc-3.jpg'),
(788,545,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:34:\"2024/11/GuidoConstructionInc-3.jpg\";s:8:\"filesize\";i:585075;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"GuidoConstructionInc-3-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14960;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"GuidoConstructionInc-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6990;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"GuidoConstructionInc-3-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74960;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(789,546,'_wp_attached_file','2024/11/GuidoConstructionInc-8.jpg'),
(790,546,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:34:\"2024/11/GuidoConstructionInc-8.jpg\";s:8:\"filesize\";i:678336;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"GuidoConstructionInc-8-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17740;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"GuidoConstructionInc-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9092;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"GuidoConstructionInc-8-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94617;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(791,547,'_wp_attached_file','2024/11/GuidoConstructionInc-18.jpg'),
(792,547,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:35:\"2024/11/GuidoConstructionInc-18.jpg\";s:8:\"filesize\";i:643599;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-18-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16308;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7888;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-18-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86591;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(793,548,'_wp_attached_file','2024/11/GuidoConstructionInc-20.jpg'),
(794,548,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:35:\"2024/11/GuidoConstructionInc-20.jpg\";s:8:\"filesize\";i:559066;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-20-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14001;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6551;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-20-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76592;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(795,549,'_wp_attached_file','2024/11/GuidoConstructionInc-22.jpg'),
(796,549,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:35:\"2024/11/GuidoConstructionInc-22.jpg\";s:8:\"filesize\";i:513072;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-22-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13147;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6060;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-22-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68342;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(797,550,'_wp_attached_file','2024/11/GuidoConstructionInc-30.jpg'),
(798,550,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:35:\"2024/11/GuidoConstructionInc-30.jpg\";s:8:\"filesize\";i:650910;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-30-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15196;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-30-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6857;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-30-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87945;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(799,551,'_wp_attached_file','2024/11/GuidoConstructionInc-31.jpg'),
(800,551,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:35:\"2024/11/GuidoConstructionInc-31.jpg\";s:8:\"filesize\";i:597985;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-31-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14675;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-31-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7028;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-31-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83216;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(801,552,'_wp_attached_file','2024/11/GuidoConstructionInc-45.jpg'),
(802,552,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:35:\"2024/11/GuidoConstructionInc-45.jpg\";s:8:\"filesize\";i:562951;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-45-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-45-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7389;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-45-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77804;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(803,553,'_wp_attached_file','2024/11/GuidoConstructionInc-50.jpg'),
(804,553,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:35:\"2024/11/GuidoConstructionInc-50.jpg\";s:8:\"filesize\";i:679256;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-50-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15518;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-50-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7065;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-50-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105235;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(805,554,'_wp_attached_file','2024/11/GuidoConstructionInc-53.jpg'),
(806,554,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:35:\"2024/11/GuidoConstructionInc-53.jpg\";s:8:\"filesize\";i:609973;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-53-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16819;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-53-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7629;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-53-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97813;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(807,555,'_wp_attached_file','2024/11/GuidoConstructionInc-57.jpg'),
(808,555,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:35:\"2024/11/GuidoConstructionInc-57.jpg\";s:8:\"filesize\";i:639892;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-57-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17357;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-57-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8289;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-57-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92015;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(809,556,'_wp_attached_file','2024/11/GuidoConstructionInc-60.jpg'),
(810,556,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:35:\"2024/11/GuidoConstructionInc-60.jpg\";s:8:\"filesize\";i:679410;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-60-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16967;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-60-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7407;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-60-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100419;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(811,557,'_wp_attached_file','2024/11/GuidoConstructionInc-65.jpg'),
(812,557,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:35:\"2024/11/GuidoConstructionInc-65.jpg\";s:8:\"filesize\";i:576257;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-65-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15393;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-65-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7240;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-65-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80910;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(813,558,'_wp_attached_file','2024/11/GuidoConstructionInc-72.jpg'),
(814,558,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:35:\"2024/11/GuidoConstructionInc-72.jpg\";s:8:\"filesize\";i:582166;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-72-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14452;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-72-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7237;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-72-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79063;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(815,560,'_wp_attached_file','2024/11/GuidoConstructionInc-12.jpg'),
(816,560,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:35:\"2024/11/GuidoConstructionInc-12.jpg\";s:8:\"filesize\";i:572339;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-12-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15133;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7226;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-12-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74374;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(817,561,'_wp_attached_file','2024/11/GuidoConstructionInc-69.jpg'),
(818,561,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:35:\"2024/11/GuidoConstructionInc-69.jpg\";s:8:\"filesize\";i:642836;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-69-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16167;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-69-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7412;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-69-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93285;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(819,562,'_wp_attached_file','2024/11/GuidoConstructionInc-62.jpg'),
(820,562,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:35:\"2024/11/GuidoConstructionInc-62.jpg\";s:8:\"filesize\";i:676034;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-62-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15198;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-62-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7411;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-62-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90637;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(821,563,'_wp_attached_file','2024/11/GuidoConstructionInc-70.jpg'),
(822,563,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:35:\"2024/11/GuidoConstructionInc-70.jpg\";s:8:\"filesize\";i:671940;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-70-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16763;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-70-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8094;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-70-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99591;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(823,564,'_wp_attached_file','2024/11/GuidoConstructionInc-67.jpg'),
(824,564,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:35:\"2024/11/GuidoConstructionInc-67.jpg\";s:8:\"filesize\";i:509358;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-67-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13370;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-67-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6774;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"GuidoConstructionInc-67-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67380;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(825,59,'_wpb_post_custom_layout','default'),
(826,59,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}'),
(827,59,'_wpb_shortcodes_default_css_updated','1'),
(828,59,'_wpb_shortcodes_custom_css_updated','1'),
(829,565,'_wpb_post_custom_layout','default'),
(830,565,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}'),
(831,565,'_wpb_shortcodes_default_css_updated','1'),
(832,565,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(833,565,'_wpb_shortcodes_custom_css_updated','1'),
(834,559,'_wpb_post_custom_layout','default'),
(835,559,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}'),
(836,559,'_wpb_shortcodes_default_css_updated','1'),
(837,559,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(838,559,'_wpb_shortcodes_custom_css_updated','1'),
(839,59,'_oembed_acb8bb06c978b60ca3cd32745aaf2ac4','<iframe title=\"Guido Construction - Medford Oregon Concrete Medians, Sidewalks, Faux Rock Wall, Crosswalks + More\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/4LfhzISHbWY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),
(840,59,'_oembed_time_acb8bb06c978b60ca3cd32745aaf2ac4','1732672255'),
(841,59,'_oembed_b317ef469ea413f6c6b56a64d3ac8fc8','<iframe title=\"Guido Construction, Inc. USFC Jobsite Video Roseburg, Oregon\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/gGz8hIEEhqU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),
(842,59,'_oembed_time_b317ef469ea413f6c6b56a64d3ac8fc8','1732672256'),
(843,566,'_wp_attached_file','2024/11/UCC-Compass-Guido-Construction-55.jpg'),
(844,566,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:45:\"2024/11/UCC-Compass-Guido-Construction-55.jpg\";s:8:\"filesize\";i:780130;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"UCC-Compass-Guido-Construction-55-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23540;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"UCC-Compass-Guido-Construction-55-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9970;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"UCC-Compass-Guido-Construction-55-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115679;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(845,567,'_wp_attached_file','2024/11/UCC-Compass-Guido-Construction-106.jpg'),
(846,567,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:46:\"2024/11/UCC-Compass-Guido-Construction-106.jpg\";s:8:\"filesize\";i:693468;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-106-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16952;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-106-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7559;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-106-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88413;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(847,568,'_wp_attached_file','2024/11/UCC-Compass-Guido-Construction-153.jpg'),
(848,568,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:46:\"2024/11/UCC-Compass-Guido-Construction-153.jpg\";s:8:\"filesize\";i:629652;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-153-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15689;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-153-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6868;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-153-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91126;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(849,569,'_wp_attached_file','2024/11/UCC-Compass-Guido-Construction-155.jpg'),
(850,569,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:564;s:4:\"file\";s:46:\"2024/11/UCC-Compass-Guido-Construction-155.jpg\";s:8:\"filesize\";i:740443;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-155-300x165.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17308;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-155-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7977;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-155-768x423.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104255;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(851,570,'_wp_attached_file','2024/11/UCC-Compass-Guido-Construction-159.jpg'),
(852,570,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:46:\"2024/11/UCC-Compass-Guido-Construction-159.jpg\";s:8:\"filesize\";i:610217;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-159-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14982;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-159-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8212;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-159-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100000;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(853,571,'_wp_attached_file','2024/11/UCC-Compass-Guido-Construction-167.jpg'),
(854,571,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:46:\"2024/11/UCC-Compass-Guido-Construction-167.jpg\";s:8:\"filesize\";i:862486;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-167-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23145;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-167-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10863;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-167-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129905;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(855,572,'_wp_attached_file','2024/11/UCC-Compass-Guido-Construction-151.jpg'),
(856,572,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:46:\"2024/11/UCC-Compass-Guido-Construction-151.jpg\";s:8:\"filesize\";i:883190;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-151-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21225;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-151-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9983;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-151-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124442;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(857,573,'_wp_attached_file','2024/11/UCC-Compass-Guido-Construction-152.jpg'),
(858,573,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:46:\"2024/11/UCC-Compass-Guido-Construction-152.jpg\";s:8:\"filesize\";i:656352;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-152-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16376;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-152-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8952;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"UCC-Compass-Guido-Construction-152-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96194;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(859,574,'_wpb_post_custom_layout','default'),
(860,574,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}'),
(861,574,'_wpb_shortcodes_default_css_updated','1'),
(862,574,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(863,574,'_wpb_shortcodes_custom_css_updated','1'),
(864,575,'_wpb_post_custom_layout','default'),
(865,575,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}'),
(866,575,'_wpb_shortcodes_default_css_updated','1'),
(867,575,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(868,575,'_wpb_shortcodes_custom_css_updated','1'),
(869,576,'_wpb_post_custom_layout','default'),
(870,576,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}'),
(871,576,'_wpb_shortcodes_default_css_updated','1'),
(872,576,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(873,576,'_wpb_shortcodes_custom_css_updated','1'),
(874,577,'_wpb_post_custom_layout','default'),
(875,577,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}'),
(876,577,'_wpb_shortcodes_default_css_updated','1'),
(877,577,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(878,577,'_wpb_shortcodes_custom_css_updated','1'),
(879,578,'_wpb_post_custom_layout','default'),
(880,578,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}'),
(881,578,'_wpb_shortcodes_default_css_updated','1'),
(882,578,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(883,578,'_wpb_shortcodes_custom_css_updated','1'),
(884,579,'_wpb_post_custom_layout','default'),
(885,579,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}'),
(886,579,'_wpb_shortcodes_default_css_updated','1'),
(887,579,'_wpb_shortcodes_custom_css','.vc_custom_1634947336053{background-color: #a4b0bc !important;}'),
(888,579,'_wpb_shortcodes_custom_css_updated','1'),
(889,59,'_oembed_5626fbf71fd9f8fcfa6a5d30cbb16744','<iframe title=\"Guido Construction UCC Compass Concrete Pour\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/Z_llwHT1zU0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),
(890,59,'_oembed_time_5626fbf71fd9f8fcfa6a5d30cbb16744','1732673783'),
(891,41,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_cta3{padding-top:28px;padding-right:28px;padding-bottom:28px;padding-left:28px;margin-bottom:35px;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(892,41,'_wpb_shortcodes_default_css_updated','1'),
(893,41,'_wpb_shortcodes_custom_css_updated','1'),
(894,41,'_oembed_d89d14412291e69c1b83a0e56f17789b','<iframe title=\"Guido Construction, Inc. Promotional Video\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/bMKLX3teORY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),
(895,41,'_oembed_time_d89d14412291e69c1b83a0e56f17789b','1732678194'),
(896,60,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(897,60,'_wpb_shortcodes_default_css_updated','1'),
(898,60,'_wpb_shortcodes_custom_css_updated','1'),
(899,57,'_wpb_shortcodes_default_css','.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(900,57,'_wpb_shortcodes_default_css_updated','1'),
(901,57,'_wpb_shortcodes_custom_css_updated','1'),
(902,58,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}'),
(903,58,'_wpb_shortcodes_default_css_updated','1'),
(904,58,'_wpb_shortcodes_custom_css_updated','1'),
(905,581,'_wp_attached_file','2025/01/DBE-Large.png'),
(906,581,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:374;s:6:\"height\";i:332;s:4:\"file\";s:21:\"2025/01/DBE-Large.png\";s:8:\"filesize\";i:28228;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"DBE-Large-300x266.png\";s:5:\"width\";i:300;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36934;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"DBE-Large-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16929;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(907,582,'_wp_attached_file','2025/01/MBE-Large.png'),
(908,582,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:374;s:6:\"height\";i:332;s:4:\"file\";s:21:\"2025/01/MBE-Large.png\";s:8:\"filesize\";i:26941;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"MBE-Large-300x266.png\";s:5:\"width\";i:300;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35834;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"MBE-Large-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16684;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(909,583,'_wp_attached_file','2025/01/WBE-Large.png'),
(910,583,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:374;s:6:\"height\";i:332;s:4:\"file\";s:21:\"2025/01/WBE-Large.png\";s:8:\"filesize\";i:27146;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"WBE-Large-300x266.png\";s:5:\"width\";i:300;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35999;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"WBE-Large-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16632;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(915,584,'_wp_attached_file','2025/01/DBE-Small.png'),
(916,584,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:180;s:6:\"height\";i:160;s:4:\"file\";s:21:\"2025/01/DBE-Small.png\";s:8:\"filesize\";i:21483;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"DBE-Small-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21256;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(917,585,'_wp_attached_file','2025/01/MBE-Small.png'),
(918,585,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:180;s:6:\"height\";i:160;s:4:\"file\";s:21:\"2025/01/MBE-Small.png\";s:8:\"filesize\";i:20765;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"MBE-Small-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20940;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(919,586,'_wp_attached_file','2025/01/WBE-Small.png'),
(920,586,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:180;s:6:\"height\";i:160;s:4:\"file\";s:21:\"2025/01/WBE-Small.png\";s:8:\"filesize\";i:21019;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"WBE-Small-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21070;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(921,41,'_wpb_post_custom_layout','default'),
(922,587,'_wpb_post_custom_layout','default'),
(923,587,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_cta3{padding-top:28px;padding-right:28px;padding-bottom:28px;padding-left:28px;margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(924,587,'_wpb_shortcodes_default_css_updated','1'),
(925,587,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(926,587,'_wpb_shortcodes_custom_css_updated','1'),
(927,588,'_wpb_post_custom_layout','default'),
(928,588,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_cta3{padding-top:28px;padding-right:28px;padding-bottom:28px;padding-left:28px;margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(929,588,'_wpb_shortcodes_default_css_updated','1'),
(930,588,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(931,588,'_wpb_shortcodes_custom_css_updated','1'),
(932,589,'_wpb_post_custom_layout','default'),
(933,589,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_cta3{padding-top:28px;padding-right:28px;padding-bottom:28px;padding-left:28px;margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(934,589,'_wpb_shortcodes_default_css_updated','1'),
(935,589,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(936,589,'_wpb_shortcodes_custom_css_updated','1'),
(937,590,'_wpb_post_custom_layout','default'),
(938,590,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_cta3{padding-top:28px;padding-right:28px;padding-bottom:28px;padding-left:28px;margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(939,590,'_wpb_shortcodes_default_css_updated','1'),
(940,590,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(941,590,'_wpb_shortcodes_custom_css_updated','1'),
(942,60,'_wpb_post_custom_layout','default'),
(943,591,'_wpb_post_custom_layout','default'),
(944,591,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(945,591,'_wpb_shortcodes_default_css_updated','1'),
(946,591,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(947,591,'_wpb_shortcodes_custom_css_updated','1'),
(948,506,'_wpb_post_custom_layout','default'),
(949,506,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(950,506,'_wpb_shortcodes_default_css_updated','1'),
(951,506,'_wpb_shortcodes_custom_css_updated','1'),
(952,592,'_wpb_post_custom_layout','default'),
(953,592,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(954,592,'_wpb_shortcodes_default_css_updated','1'),
(955,592,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(956,592,'_wpb_shortcodes_custom_css_updated','1'),
(957,593,'_wpb_post_custom_layout','default'),
(958,593,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(959,593,'_wpb_shortcodes_default_css_updated','1'),
(960,593,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(961,593,'_wpb_shortcodes_custom_css_updated','1'),
(962,595,'_wp_attached_file','2025/03/Douglas-Ave-tear-up-concrete-concrete-cutting-Guido-Construction-Inc-92.jpg'),
(963,595,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:83:\"2025/03/Douglas-Ave-tear-up-concrete-concrete-cutting-Guido-Construction-Inc-92.jpg\";s:8:\"filesize\";i:572657;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:83:\"Douglas-Ave-tear-up-concrete-concrete-cutting-Guido-Construction-Inc-92-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11902;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:83:\"Douglas-Ave-tear-up-concrete-concrete-cutting-Guido-Construction-Inc-92-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5312;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:83:\"Douglas-Ave-tear-up-concrete-concrete-cutting-Guido-Construction-Inc-92-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61829;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(964,596,'_wp_attached_file','2025/03/Douglas-Ave-ada-sidewalk-Guido-Construction-Inc-23.jpg'),
(965,596,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:62:\"2025/03/Douglas-Ave-ada-sidewalk-Guido-Construction-Inc-23.jpg\";s:8:\"filesize\";i:552044;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Douglas-Ave-ada-sidewalk-Guido-Construction-Inc-23-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14780;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Douglas-Ave-ada-sidewalk-Guido-Construction-Inc-23-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6718;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:62:\"Douglas-Ave-ada-sidewalk-Guido-Construction-Inc-23-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76172;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(966,597,'_wp_attached_file','2025/03/Douglas-Ave-Guido-Construction-Inc-64.jpg'),
(967,597,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:576;s:4:\"file\";s:49:\"2025/03/Douglas-Ave-Guido-Construction-Inc-64.jpg\";s:8:\"filesize\";i:539040;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Douglas-Ave-Guido-Construction-Inc-64-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15447;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Douglas-Ave-Guido-Construction-Inc-64-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7310;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Douglas-Ave-Guido-Construction-Inc-64-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78508;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(968,598,'_wpb_post_custom_layout','default'),
(969,598,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(970,598,'_wpb_shortcodes_default_css_updated','1'),
(971,598,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(972,598,'_wpb_shortcodes_custom_css_updated','1'),
(973,599,'_wpb_post_custom_layout','default'),
(974,599,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(975,599,'_wpb_shortcodes_default_css_updated','1'),
(976,599,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(977,599,'_wpb_shortcodes_custom_css_updated','1'),
(978,601,'_edit_last','1'),
(979,601,'_edit_lock','1758667143:1'),
(980,602,'_wp_attached_file','2025/08/Truncated-domes.jpeg'),
(981,602,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:28:\"2025/08/Truncated-domes.jpeg\";s:8:\"filesize\";i:249170;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Truncated-domes-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20333;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Truncated-domes-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7729;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"Truncated-domes-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106268;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 13\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1692457407\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:19:\"0.00068587105624143\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(982,601,'_wp_page_template','homepage.php'),
(983,601,'_wpb_vc_js_status','true'),
(984,601,'_wpb_post_custom_layout','default'),
(985,601,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(986,601,'_wpb_shortcodes_default_css_updated','1'),
(987,603,'_wpb_post_custom_layout','default'),
(988,603,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(989,603,'_wpb_shortcodes_default_css_updated','1'),
(990,605,'_wp_attached_file','2025/08/vanguard-domes-side-view.jpg'),
(991,605,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:460;s:6:\"height\";i:295;s:4:\"file\";s:36:\"2025/08/vanguard-domes-side-view.jpg\";s:8:\"filesize\";i:46383;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"vanguard-domes-side-view-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8931;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"vanguard-domes-side-view-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4235;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon PowerShot SD400\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1144309581\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"17.4\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(992,601,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:1:{s:29:\"1758667201739-b753ffdb-5eb7-2\";a:3:{s:3:\"tag\";s:21:\"vc_masonry_media_grid\";s:4:\"atts\";a:4:{s:13:\"element_width\";s:1:\"6\";s:3:\"css\";s:0:\"\";s:7:\"grid_id\";s:36:\"vc_gid:1758667201739-b753ffdb-5eb7-2\";s:7:\"include\";s:7:\"516,513\";}s:7:\"content\";s:0:\"\";}}}}'),
(993,606,'_wpb_post_custom_layout','default'),
(994,606,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(995,606,'_wpb_shortcodes_default_css_updated','1'),
(996,607,'_wpb_post_custom_layout','default'),
(997,607,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(998,607,'_wpb_shortcodes_default_css_updated','1'),
(999,601,'_wpb_shortcodes_custom_css','.vc_custom_1756929966404{background-color: #FFFFFF !important;}.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1756929980182{background-color: #FFFFFF !important;}.vc_custom_1756929954726{background-color: #FFFFFF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1000,601,'_wpb_shortcodes_custom_css_updated','1'),
(1001,608,'_wpb_post_custom_layout','default'),
(1002,608,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1003,608,'_wpb_shortcodes_default_css_updated','1'),
(1004,608,'_wpb_shortcodes_custom_css','.vc_custom_1755884043718{background-color: #062947 !important;}'),
(1005,608,'_wpb_shortcodes_custom_css_updated','1'),
(1006,609,'_wpb_post_custom_layout','default'),
(1007,609,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1008,609,'_wpb_shortcodes_default_css_updated','1'),
(1009,609,'_wpb_shortcodes_custom_css','.vc_custom_1755884043718{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}'),
(1010,609,'_wpb_shortcodes_custom_css_updated','1'),
(1011,610,'_wp_attached_file','2025/08/Vanguard-ada-systems-oregon-roseburg-partner.jpg'),
(1012,610,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1764;s:6:\"height\";i:1336;s:4:\"file\";s:56:\"2025/08/Vanguard-ada-systems-oregon-roseburg-partner.jpg\";s:8:\"filesize\";i:363846;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"Vanguard-ada-systems-oregon-roseburg-partner-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19736;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"Vanguard-ada-systems-oregon-roseburg-partner-1024x776.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:776;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124048;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"Vanguard-ada-systems-oregon-roseburg-partner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7968;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"Vanguard-ada-systems-oregon-roseburg-partner-768x582.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:582;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80282;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"Vanguard-ada-systems-oregon-roseburg-partner-1536x1163.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1163;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:232139;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1013,611,'_wp_attached_file','2025/08/guidestrip-colors-options.jpg'),
(1014,611,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:460;s:6:\"height\";i:295;s:4:\"file\";s:37:\"2025/08/guidestrip-colors-options.jpg\";s:8:\"filesize\";i:47604;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"guidestrip-colors-options-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9906;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"guidestrip-colors-options-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4990;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),
(1015,612,'_wpb_post_custom_layout','default'),
(1016,612,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}'),
(1017,612,'_wpb_shortcodes_default_css_updated','1'),
(1018,612,'_wpb_shortcodes_custom_css','.vc_custom_1755884043718{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}'),
(1019,612,'_wpb_shortcodes_custom_css_updated','1'),
(1020,613,'_wpb_post_custom_layout','default'),
(1021,613,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}'),
(1022,613,'_wpb_shortcodes_default_css_updated','1'),
(1023,613,'_wpb_shortcodes_custom_css','.vc_custom_1755884043718{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}'),
(1024,613,'_wpb_shortcodes_custom_css_updated','1'),
(1027,615,'_wp_attached_file','2025/08/guidestrip-truncated-domes-railway.jpg'),
(1028,615,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:46:\"2025/08/guidestrip-truncated-domes-railway.jpg\";s:8:\"filesize\";i:674533;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"guidestrip-truncated-domes-railway-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19917;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"guidestrip-truncated-domes-railway-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138176;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"guidestrip-truncated-domes-railway-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8065;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"guidestrip-truncated-domes-railway-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88582;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1029,616,'_wp_attached_file','2025/08/vanguard-trapezoid-tactile-warning-delineator.jpg'),
(1030,616,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:57:\"2025/08/vanguard-trapezoid-tactile-warning-delineator.jpg\";s:8:\"filesize\";i:338307;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"vanguard-trapezoid-tactile-warning-delineator-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27821;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"vanguard-trapezoid-tactile-warning-delineator-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8056;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"vanguard-trapezoid-tactile-warning-delineator-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:169846;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-S901U\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1721320484\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"2.2\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0019880715705765\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),
(1031,617,'_wpb_post_custom_layout','default'),
(1032,617,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1033,617,'_wpb_shortcodes_default_css_updated','1'),
(1034,617,'_wpb_shortcodes_custom_css','.vc_custom_1755884043718{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}'),
(1035,617,'_wpb_shortcodes_custom_css_updated','1'),
(1036,618,'_wpb_post_custom_layout','default'),
(1037,618,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1038,618,'_wpb_shortcodes_default_css_updated','1'),
(1039,618,'_wpb_shortcodes_custom_css','.vc_custom_1755884043718{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}'),
(1040,618,'_wpb_shortcodes_custom_css_updated','1'),
(1041,619,'_wpb_post_custom_layout','default'),
(1042,619,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1043,619,'_wpb_shortcodes_default_css_updated','1'),
(1044,619,'_wpb_shortcodes_custom_css','.vc_custom_1755884043718{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}'),
(1045,619,'_wpb_shortcodes_custom_css_updated','1'),
(1051,620,'_wpb_post_custom_layout','default'),
(1052,620,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1053,620,'_wpb_shortcodes_default_css_updated','1'),
(1054,620,'_wpb_shortcodes_custom_css','.vc_custom_1755884043718{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}'),
(1055,620,'_wpb_shortcodes_custom_css_updated','1'),
(1056,621,'_wpb_post_custom_layout','default'),
(1057,621,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1058,621,'_wpb_shortcodes_default_css_updated','1'),
(1059,621,'_wpb_shortcodes_custom_css','.vc_custom_1755884043718{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}'),
(1060,621,'_wpb_shortcodes_custom_css_updated','1'),
(1061,622,'_wpb_post_custom_layout','default'),
(1062,622,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1063,622,'_wpb_shortcodes_default_css_updated','1'),
(1064,622,'_wpb_shortcodes_custom_css','.vc_custom_1755884043718{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}'),
(1065,622,'_wpb_shortcodes_custom_css_updated','1'),
(1066,623,'_wpb_post_custom_layout','default'),
(1067,623,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1068,623,'_wpb_shortcodes_default_css_updated','1'),
(1069,623,'_wpb_shortcodes_custom_css','.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1070,623,'_wpb_shortcodes_custom_css_updated','1'),
(1071,624,'_wpb_post_custom_layout','default'),
(1072,624,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1073,624,'_wpb_shortcodes_default_css_updated','1'),
(1074,624,'_wpb_shortcodes_custom_css','.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1075,624,'_wpb_shortcodes_custom_css_updated','1'),
(1076,625,'_wpb_post_custom_layout','default'),
(1077,625,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1078,625,'_wpb_shortcodes_default_css_updated','1'),
(1079,625,'_wpb_shortcodes_custom_css','.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1080,625,'_wpb_shortcodes_custom_css_updated','1'),
(1081,626,'_wpb_post_custom_layout','default'),
(1082,626,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1083,626,'_wpb_shortcodes_default_css_updated','1'),
(1084,626,'_wpb_shortcodes_custom_css','.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}.vc_custom_1755886808110{background-color: #FFFFFF !important;}'),
(1085,626,'_wpb_shortcodes_custom_css_updated','1'),
(1086,627,'_wpb_post_custom_layout','default'),
(1087,627,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1088,627,'_wpb_shortcodes_default_css_updated','1'),
(1089,627,'_wpb_shortcodes_custom_css','.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}.vc_custom_1755886864385{background-color: #FFFFFF00 !important;}'),
(1090,627,'_wpb_shortcodes_custom_css_updated','1'),
(1091,628,'_wpb_post_custom_layout','default'),
(1092,628,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1093,628,'_wpb_shortcodes_default_css_updated','1'),
(1094,628,'_wpb_shortcodes_custom_css','.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1095,628,'_wpb_shortcodes_custom_css_updated','1'),
(1096,629,'_wpb_post_custom_layout','default'),
(1097,629,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1098,629,'_wpb_shortcodes_default_css_updated','1'),
(1099,629,'_wpb_shortcodes_custom_css','.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1100,629,'_wpb_shortcodes_custom_css_updated','1'),
(1101,630,'_wpb_post_custom_layout','default'),
(1102,630,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1103,630,'_wpb_shortcodes_default_css_updated','1'),
(1104,630,'_wpb_shortcodes_custom_css','.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1105,630,'_wpb_shortcodes_custom_css_updated','1'),
(1106,631,'_wp_attached_file','2025/08/IMG_9868.jpg'),
(1107,631,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1142;s:6:\"height\";i:857;s:4:\"file\";s:20:\"2025/08/IMG_9868.jpg\";s:8:\"filesize\";i:970973;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_9868-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16414;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_9868-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147790;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_9868-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5974;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_9868-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90279;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1108,632,'_wp_attached_file','2025/08/Douglas-Ave-Guido-Construction-Inc-23-e1748552974511.jpg'),
(1109,632,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1973;s:6:\"height\";i:386;s:4:\"file\";s:64:\"2025/08/Douglas-Ave-Guido-Construction-Inc-23-e1748552974511.jpg\";s:8:\"filesize\";i:172558;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"Douglas-Ave-Guido-Construction-Inc-23-e1748552974511-300x59.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:59;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4474;}s:5:\"large\";a:5:{s:4:\"file\";s:65:\"Douglas-Ave-Guido-Construction-Inc-23-e1748552974511-1024x200.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38896;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Douglas-Ave-Guido-Construction-Inc-23-e1748552974511-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6042;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:64:\"Douglas-Ave-Guido-Construction-Inc-23-e1748552974511-768x150.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22046;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:65:\"Douglas-Ave-Guido-Construction-Inc-23-e1748552974511-1536x301.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:301;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89080;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1110,633,'_wp_attached_file','2025/08/Asset-2.png'),
(1111,633,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:134;s:6:\"height\";i:107;s:4:\"file\";s:19:\"2025/08/Asset-2.png\";s:8:\"filesize\";i:1770;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1112,634,'_wp_attached_file','2025/08/Asset-3.png'),
(1113,634,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:129;s:6:\"height\";i:128;s:4:\"file\";s:19:\"2025/08/Asset-3.png\";s:8:\"filesize\";i:2110;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1114,635,'_wpb_post_custom_layout','default'),
(1115,635,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1116,635,'_wpb_shortcodes_default_css_updated','1'),
(1117,635,'_wpb_shortcodes_custom_css','.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1118,635,'_wpb_shortcodes_custom_css_updated','1'),
(1119,637,'_wpb_post_custom_layout','default'),
(1120,637,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1121,637,'_wpb_shortcodes_default_css_updated','1'),
(1122,637,'_wpb_shortcodes_custom_css','.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1123,637,'_wpb_shortcodes_custom_css_updated','1'),
(1126,601,'_wpb_vc_editor_type','backend'),
(1137,641,'_wpb_post_custom_layout','default'),
(1138,641,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1139,641,'_wpb_shortcodes_default_css_updated','1'),
(1140,641,'_wpb_shortcodes_custom_css','.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1141,641,'_wpb_shortcodes_custom_css_updated','1'),
(1157,645,'_wpb_post_custom_layout','default'),
(1158,645,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1159,645,'_wpb_shortcodes_default_css_updated','1'),
(1160,645,'_wpb_shortcodes_custom_css','.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1161,645,'_wpb_shortcodes_custom_css_updated','1'),
(1162,646,'_wpb_post_custom_layout','default'),
(1163,646,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1164,646,'_wpb_shortcodes_default_css_updated','1'),
(1165,646,'_wpb_shortcodes_custom_css','.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1166,646,'_wpb_shortcodes_custom_css_updated','1'),
(1167,647,'_wpb_post_custom_layout','default'),
(1168,647,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1169,647,'_wpb_shortcodes_default_css_updated','1'),
(1170,647,'_wpb_shortcodes_custom_css','.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1171,647,'_wpb_shortcodes_custom_css_updated','1'),
(1172,648,'_wpb_post_custom_layout','default'),
(1173,648,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1174,648,'_wpb_shortcodes_default_css_updated','1'),
(1175,648,'_wpb_shortcodes_custom_css','.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1176,648,'_wpb_shortcodes_custom_css_updated','1'),
(1182,651,'_wpb_post_custom_layout','blank'),
(1183,651,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1184,651,'_wpb_shortcodes_default_css_updated','1'),
(1185,651,'_wpb_shortcodes_custom_css','.vc_custom_1756929966404{background-color: #FFFFFF !important;}.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1756929980182{background-color: #FFFFFF !important;}.vc_custom_1756929954726{background-color: #FFFFFF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1186,651,'_wpb_shortcodes_custom_css_updated','1'),
(1187,652,'_wpb_post_custom_layout','blank'),
(1188,652,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1189,652,'_wpb_shortcodes_default_css_updated','1'),
(1190,652,'_wpb_shortcodes_custom_css','.vc_custom_1756929966404{background-color: #FFFFFF !important;}.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1756929980182{background-color: #FFFFFF !important;}.vc_custom_1756929954726{background-color: #FFFFFF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1191,652,'_wpb_shortcodes_custom_css_updated','1'),
(1192,653,'_wpb_post_custom_layout','blank'),
(1193,653,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1194,653,'_wpb_shortcodes_default_css_updated','1'),
(1195,653,'_wpb_shortcodes_custom_css','.vc_custom_1756930162763{background-color: #FFFFFF !important;}.vc_custom_1756930136895{background-color: #FFFFFF !important;}.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1756929980182{background-color: #FFFFFF !important;}.vc_custom_1756929954726{background-color: #FFFFFF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1196,653,'_wpb_shortcodes_custom_css_updated','1'),
(1197,655,'_wpb_post_custom_layout','default'),
(1198,655,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1199,655,'_wpb_shortcodes_default_css_updated','1'),
(1200,655,'_wpb_shortcodes_custom_css','.vc_custom_1756929966404{background-color: #FFFFFF !important;}.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1756929980182{background-color: #FFFFFF !important;}.vc_custom_1756929954726{background-color: #FFFFFF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1201,655,'_wpb_shortcodes_custom_css_updated','1'),
(1203,656,'_wpb_post_custom_layout','blank'),
(1204,656,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1205,656,'_wpb_shortcodes_default_css_updated','1'),
(1206,656,'_wpb_shortcodes_custom_css','.vc_custom_1756929966404{background-color: #FFFFFF !important;}.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1756929980182{background-color: #FFFFFF !important;}.vc_custom_1756929954726{background-color: #FFFFFF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1207,656,'_wpb_shortcodes_custom_css_updated','1'),
(1208,657,'_wpb_post_custom_layout','blank'),
(1209,657,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1210,657,'_wpb_shortcodes_default_css_updated','1'),
(1211,657,'_wpb_shortcodes_custom_css','.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1212,657,'_wpb_shortcodes_custom_css_updated','1'),
(1213,601,'_wpb_post_custom_css','.page-id-601#logo{\r\n    display:none;\r\n}\r\n.responsive-img{\r\n    display:none;\r\n}'),
(1214,659,'_wpb_post_custom_css','html.js_active.vc_desktop.vc_transform body.wp-singular.page-template.page-template-homepage.page-template-homepage-php.page.page-id-601.logged-in.wp-theme-lambert.lambert-wp-theme.shop-list-4-cols.shop-list-tablet-6-cols.wpb-js-composer.js-comp-ver-8.6.1.vc_responsive.customize-support.vc_editor.compose-mode div#main header.mainpage-header\r\n                                                    display:none;'),
(1215,659,'_wpb_post_custom_layout','default'),
(1216,659,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1217,659,'_wpb_shortcodes_default_css_updated','1'),
(1218,659,'_wpb_shortcodes_custom_css','.vc_custom_1756929966404{background-color: #FFFFFF !important;}.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1756929980182{background-color: #FFFFFF !important;}.vc_custom_1756929954726{background-color: #FFFFFF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1219,659,'_wpb_shortcodes_custom_css_updated','1'),
(1223,662,'_wpb_post_custom_css','.page-id-601#logo{\r\n    display:none;\r\n}\r\n.responsive-img{\r\n    display:none;\r\n}'),
(1224,662,'_wpb_post_custom_layout','default'),
(1225,662,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1226,662,'_wpb_shortcodes_default_css_updated','1'),
(1227,662,'_wpb_shortcodes_custom_css','.vc_custom_1756929966404{background-color: #FFFFFF !important;}.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1756929980182{background-color: #FFFFFF !important;}.vc_custom_1756929954726{background-color: #FFFFFF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1228,662,'_wpb_shortcodes_custom_css_updated','1'),
(1229,663,'fonts-data','a:4:{s:9:\"font_name\";s:13:\"DM Serif Text\";s:13:\"font_fallback\";s:0:\"\";s:12:\"font_display\";s:8:\"fallback\";s:10:\"variations\";a:2:{i:0;a:4:{s:2:\"id\";s:1:\"1\";s:9:\"font_file\";s:0:\"\";s:10:\"font_style\";s:6:\"normal\";s:11:\"font_weight\";s:3:\"400\";}i:1;a:4:{s:2:\"id\";s:1:\"2\";s:9:\"font_file\";s:0:\"\";s:10:\"font_style\";s:6:\"italic\";s:11:\"font_weight\";s:6:\"italic\";}}}'),
(1230,663,'fonts-face','@font-face {\n	font-family: \'DM Serif Text\';\n	font-style: normal;\n	font-weight: 400;\n	font-display: fallback;\n	src: url(\'https://guidoconstructioninc.com/wp-content/bcf-fonts/DM%20Serif%20Text/dm-serif-text-400-normal0.woff2\') format(\'woff2\'),\n		url(\'https://guidoconstructioninc.com/wp-content/bcf-fonts/DM%20Serif%20Text/dm-serif-text-400-normal1.woff2\') format(\'woff2\');\n}\n@font-face {\n	font-family: \'DM Serif Text\';\n	font-style: italic;\n	font-display: fallback;\n	src: url(\'https://guidoconstructioninc.com/wp-content/bcf-fonts/DM%20Serif%20Text/dm-serif-text-italic-italic0.woff2\') format(\'woff2\'),\n		url(\'https://guidoconstructioninc.com/wp-content/bcf-fonts/DM%20Serif%20Text/dm-serif-text-italic-italic1.woff2\') format(\'woff2\');\n}\n'),
(1231,663,'font-type','google'),
(1232,41,'_wpb_vc_editor_type','backend'),
(1233,665,'_wpb_post_custom_css','.page-id-601#logo{\r\n    display:none;\r\n}\r\n.responsive-img{\r\n    display:none;\r\n}'),
(1234,665,'_wpb_post_custom_layout','default'),
(1235,665,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1236,665,'_wpb_shortcodes_default_css_updated','1'),
(1237,665,'_wpb_shortcodes_custom_css','.vc_custom_1756929966404{background-color: #FFFFFF !important;}.vc_custom_1755886218429{background-color: #062947 !important;}.vc_custom_1755884199915{background-color: #9BC7EF !important;}.vc_custom_1756929980182{background-color: #FFFFFF !important;}.vc_custom_1756929954726{background-color: #FFFFFF !important;}.vc_custom_1755886240355{background-color: #062947 !important;}.vc_custom_1755886227553{background-color: #062947 !important;}'),
(1238,665,'_wpb_shortcodes_custom_css_updated','1'),
(1239,666,'_wp_attached_file','2025/09/Selected-Version-September-RGB-Transparent.png'),
(1240,666,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2217;s:6:\"height\";i:1446;s:4:\"file\";s:54:\"2025/09/Selected-Version-September-RGB-Transparent.png\";s:8:\"filesize\";i:69590;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"Selected-Version-September-RGB-Transparent-300x196.png\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12052;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"Selected-Version-September-RGB-Transparent-1024x668.png\";s:5:\"width\";i:1024;s:6:\"height\";i:668;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46028;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"Selected-Version-September-RGB-Transparent-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6529;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"Selected-Version-September-RGB-Transparent-768x501.png\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33062;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:56:\"Selected-Version-September-RGB-Transparent-1536x1002.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1002;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74512;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:56:\"Selected-Version-September-RGB-Transparent-2048x1336.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1336;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107923;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1241,667,'_wp_attached_file','2025/09/cropped-Selected-Version-September-RGB-Transparent.png'),
(1242,667,'_wp_attachment_context','custom-logo'),
(1243,667,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2215;s:6:\"height\";i:1424;s:4:\"file\";s:62:\"2025/09/cropped-Selected-Version-September-RGB-Transparent.png\";s:8:\"filesize\";i:69341;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"cropped-Selected-Version-September-RGB-Transparent-300x193.png\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11948;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"cropped-Selected-Version-September-RGB-Transparent-1024x658.png\";s:5:\"width\";i:1024;s:6:\"height\";i:658;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45703;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"cropped-Selected-Version-September-RGB-Transparent-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6588;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:62:\"cropped-Selected-Version-September-RGB-Transparent-768x494.png\";s:5:\"width\";i:768;s:6:\"height\";i:494;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32903;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:63:\"cropped-Selected-Version-September-RGB-Transparent-1536x987.png\";s:5:\"width\";i:1536;s:6:\"height\";i:987;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74418;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:64:\"cropped-Selected-Version-September-RGB-Transparent-2048x1317.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1317;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108305;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1245,669,'_wp_attached_file','2025/09/GCI-Transparent-RGB.png'),
(1246,669,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2287;s:6:\"height\";i:1730;s:4:\"file\";s:31:\"2025/09/GCI-Transparent-RGB.png\";s:8:\"filesize\";i:47928;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"GCI-Transparent-RGB-300x227.png\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5632;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"GCI-Transparent-RGB-1024x775.png\";s:5:\"width\";i:1024;s:6:\"height\";i:775;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23464;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"GCI-Transparent-RGB-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3198;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"GCI-Transparent-RGB-768x581.png\";s:5:\"width\";i:768;s:6:\"height\";i:581;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16227;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"GCI-Transparent-RGB-1536x1162.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1162;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38678;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:33:\"GCI-Transparent-RGB-2048x1549.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1549;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57821;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1247,670,'_wp_attached_file','2025/09/GCI-TRANSPARENTRGB.png'),
(1248,670,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2287;s:6:\"height\";i:1730;s:4:\"file\";s:30:\"2025/09/GCI-TRANSPARENTRGB.png\";s:8:\"filesize\";i:33977;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"GCI-TRANSPARENTRGB-300x227.png\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3181;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"GCI-TRANSPARENTRGB-1024x775.png\";s:5:\"width\";i:1024;s:6:\"height\";i:775;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13459;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"GCI-TRANSPARENTRGB-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1938;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"GCI-TRANSPARENTRGB-768x581.png\";s:5:\"width\";i:768;s:6:\"height\";i:581;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9289;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"GCI-TRANSPARENTRGB-1536x1162.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1162;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23228;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:32:\"GCI-TRANSPARENTRGB-2048x1549.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1549;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35334;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1249,671,'_wp_attached_file','2025/09/cropped-GCI-TRANSPARENTRGB.png'),
(1250,671,'_wp_attachment_context','site-icon'),
(1251,671,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:38:\"2025/09/cropped-GCI-TRANSPARENTRGB.png\";s:8:\"filesize\";i:11499;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"cropped-GCI-TRANSPARENTRGB-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6813;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"cropped-GCI-TRANSPARENTRGB-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3084;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:38:\"cropped-GCI-TRANSPARENTRGB-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5948;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:38:\"cropped-GCI-TRANSPARENTRGB-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4042;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:38:\"cropped-GCI-TRANSPARENTRGB-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3713;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:36:\"cropped-GCI-TRANSPARENTRGB-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:649;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1254,672,'_wpb_post_custom_layout','default'),
(1255,672,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_cta3{padding-top:28px;padding-right:28px;padding-bottom:28px;padding-left:28px;margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1256,672,'_wpb_shortcodes_default_css_updated','1'),
(1257,672,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(1258,672,'_wpb_shortcodes_custom_css_updated','1'),
(1259,673,'_wpb_post_custom_layout','default'),
(1260,673,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_cta3{padding-top:28px;padding-right:28px;padding-bottom:28px;padding-left:28px;margin-bottom:35px;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1261,673,'_wpb_shortcodes_default_css_updated','1'),
(1262,673,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(1263,673,'_wpb_shortcodes_custom_css_updated','1'),
(1265,41,'_vcv-sourceChecksum','4cf18dd0f75e531e3248d00815a98698'),
(1266,41,'vcvSourceCssFileUrl','/assets-bundles/4cf18dd0f75e531e3248d00815a98698.source.css'),
(1267,41,'_vcv-globalCssMigrated','1'),
(1268,57,'_vcv-sourceChecksum','4cf18dd0f75e531e3248d00815a98698'),
(1269,57,'vcvSourceCssFileUrl','/assets-bundles/4cf18dd0f75e531e3248d00815a98698.source.css'),
(1270,57,'_vcv-globalCssMigrated','1'),
(1271,676,'_wp_attached_file','2025/09/Guido-Construction-Inc-White-LogoRGB.png'),
(1272,676,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2094;s:6:\"height\";i:1826;s:4:\"file\";s:48:\"2025/09/Guido-Construction-Inc-White-LogoRGB.png\";s:8:\"filesize\";i:69156;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Guido-Construction-Inc-White-LogoRGB-300x262.png\";s:5:\"width\";i:300;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12703;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"Guido-Construction-Inc-White-LogoRGB-1024x893.png\";s:5:\"width\";i:1024;s:6:\"height\";i:893;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49391;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Guido-Construction-Inc-White-LogoRGB-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"Guido-Construction-Inc-White-LogoRGB-768x670.png\";s:5:\"width\";i:768;s:6:\"height\";i:670;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35499;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Inc-White-LogoRGB-1536x1339.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1339;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80352;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:50:\"Guido-Construction-Inc-White-LogoRGB-2048x1786.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1786;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116230;}s:4:\"320w\";a:5:{s:4:\"file\";s:48:\"Guido-Construction-Inc-White-LogoRGB-320x279.png\";s:5:\"width\";i:320;s:6:\"height\";i:279;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13650;}s:4:\"480w\";a:5:{s:4:\"file\";s:48:\"Guido-Construction-Inc-White-LogoRGB-480x419.png\";s:5:\"width\";i:480;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21107;}s:4:\"800w\";a:5:{s:4:\"file\";s:48:\"Guido-Construction-Inc-White-LogoRGB-800x698.png\";s:5:\"width\";i:800;s:6:\"height\";i:698;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37048;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1273,503,'_vcv-previewElementsCssData',NULL),
(1274,503,'_vcv-previewGlobalElementsCss',''),
(1275,503,'_vcv-previewSourceAssetsFiles',NULL),
(1276,503,'_vcv-previewSourceCss',NULL),
(1277,57,'vcv-be-editor','gutenberg'),
(1278,503,'vcv-pageContent',NULL),
(1279,503,'_vcv-pageDesignOptionsData',NULL),
(1280,503,'_vcv-pageDesignOptionsCompiledCss',NULL),
(1281,57,'_wpb_vc_editor_type','backend'),
(1282,503,'_wpb_post_custom_layout','default'),
(1283,503,'_wpb_shortcodes_default_css','.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_icon{margin-bottom:35px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1284,503,'_wpb_shortcodes_default_css_updated','1'),
(1285,503,'_wpb_shortcodes_custom_css_updated','1'),
(1286,60,'_vcv-sourceChecksum','4cf18dd0f75e531e3248d00815a98698'),
(1287,60,'vcvSourceCssFileUrl','/assets-bundles/4cf18dd0f75e531e3248d00815a98698.source.css'),
(1288,60,'_vcv-globalCssMigrated','1'),
(1289,60,'vcv-be-editor','gutenberg'),
(1290,60,'_wpb_vc_editor_type','backend'),
(1291,677,'_vcv-previewElementsCssData',NULL),
(1292,677,'_vcv-previewGlobalElementsCss',''),
(1293,677,'_vcv-previewSourceAssetsFiles',NULL),
(1294,677,'_vcv-previewSourceCss',NULL),
(1295,677,'vcv-pageContent',NULL),
(1296,677,'_vcv-pageDesignOptionsData',NULL),
(1297,677,'_vcv-pageDesignOptionsCompiledCss',NULL),
(1298,677,'_wpb_post_custom_layout','default'),
(1299,677,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1300,677,'_wpb_shortcodes_default_css_updated','1'),
(1301,677,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(1302,677,'_wpb_shortcodes_custom_css_updated','1'),
(1303,506,'_vcv-previewElementsCssData',NULL),
(1304,506,'_vcv-previewGlobalElementsCss',''),
(1305,506,'_vcv-previewSourceAssetsFiles',NULL),
(1306,506,'_vcv-previewSourceCss',NULL),
(1307,506,'vcv-pageContent',NULL),
(1308,506,'_vcv-pageDesignOptionsData',NULL),
(1309,506,'_vcv-pageDesignOptionsCompiledCss',NULL),
(1310,678,'_vcv-previewElementsCssData',NULL),
(1311,678,'_vcv-previewGlobalElementsCss',''),
(1312,678,'_vcv-previewSourceAssetsFiles',NULL),
(1313,678,'_vcv-previewSourceCss',NULL),
(1314,678,'vcv-pageContent',NULL),
(1315,678,'_vcv-pageDesignOptionsData',NULL),
(1316,678,'_vcv-pageDesignOptionsCompiledCss',NULL),
(1317,678,'_wpb_post_custom_layout','default'),
(1318,678,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1319,678,'_wpb_shortcodes_default_css_updated','1'),
(1320,678,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(1321,678,'_wpb_shortcodes_custom_css_updated','1'),
(1322,679,'_vcv-previewElementsCssData',NULL),
(1323,679,'_vcv-previewGlobalElementsCss',''),
(1324,679,'_vcv-previewSourceAssetsFiles',NULL),
(1325,679,'_vcv-previewSourceCss',NULL),
(1326,679,'vcv-pageContent',NULL),
(1327,679,'_vcv-pageDesignOptionsData',NULL),
(1328,679,'_vcv-pageDesignOptionsCompiledCss',NULL),
(1329,679,'_wpb_post_custom_layout','default'),
(1330,679,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1331,679,'_wpb_shortcodes_default_css_updated','1'),
(1332,679,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(1333,679,'_wpb_shortcodes_custom_css_updated','1'),
(1334,680,'_vcv-previewElementsCssData',NULL),
(1335,680,'_vcv-previewGlobalElementsCss',''),
(1336,680,'_vcv-previewSourceAssetsFiles',NULL),
(1337,680,'_vcv-previewSourceCss',NULL),
(1338,680,'vcv-pageContent',NULL),
(1339,680,'_vcv-pageDesignOptionsData',NULL),
(1340,680,'_vcv-pageDesignOptionsCompiledCss',NULL),
(1341,680,'_wpb_post_custom_layout','default'),
(1342,680,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1343,680,'_wpb_shortcodes_default_css_updated','1'),
(1344,680,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(1345,680,'_wpb_shortcodes_custom_css_updated','1'),
(1346,681,'_vcv-previewElementsCssData',NULL),
(1347,681,'_vcv-previewGlobalElementsCss',''),
(1348,681,'_vcv-previewSourceAssetsFiles',NULL),
(1349,681,'_vcv-previewSourceCss',NULL),
(1350,682,'_vcv-previewElementsCssData',NULL),
(1351,682,'_vcv-previewGlobalElementsCss',''),
(1352,682,'_vcv-previewSourceAssetsFiles',NULL),
(1353,682,'_vcv-previewSourceCss',NULL),
(1354,682,'vcv-pageContent',NULL),
(1355,682,'_vcv-pageDesignOptionsData',NULL),
(1356,682,'_vcv-pageDesignOptionsCompiledCss',NULL),
(1357,682,'_wpb_post_custom_layout','default'),
(1358,682,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1359,682,'_wpb_shortcodes_default_css_updated','1'),
(1360,682,'_wpb_shortcodes_custom_css','.vc_custom_1630365309294{background-color: #a4b0bc !important;}'),
(1361,682,'_wpb_shortcodes_custom_css_updated','1'),
(1366,41,'vcv-be-editor','gutenberg'),
(1370,684,'_vcv-previewElementsCssData',NULL),
(1371,684,'_vcv-previewGlobalElementsCss',''),
(1372,684,'_vcv-previewSourceAssetsFiles',NULL),
(1373,684,'_vcv-previewSourceCss',NULL),
(1379,59,'_vcv-sourceChecksum','4cf18dd0f75e531e3248d00815a98698'),
(1380,59,'vcvSourceCssFileUrl','/assets-bundles/4cf18dd0f75e531e3248d00815a98698.source.css'),
(1381,59,'_vcv-globalCssMigrated','1'),
(1382,58,'_vcv-sourceChecksum','4cf18dd0f75e531e3248d00815a98698'),
(1383,58,'vcvSourceCssFileUrl','/assets-bundles/4cf18dd0f75e531e3248d00815a98698.source.css'),
(1384,58,'_vcv-globalCssMigrated','1'),
(1396,692,'_elementor_edit_mode','builder'),
(1397,692,'_elementor_template_type','kit'),
(1398,693,'_elementor_edit_mode','builder'),
(1399,693,'_elementor_template_type','wp-post'),
(1400,694,'_elementor_edit_mode','builder'),
(1401,694,'_elementor_template_type','post'),
(1402,693,'_elementor_version','3.32.2'),
(1403,695,'_elementor_edit_mode','builder'),
(1404,695,'_elementor_template_type','wp-post'),
(1405,696,'_elementor_edit_mode','builder'),
(1406,696,'_elementor_template_type','post'),
(1407,695,'_elementor_version','3.32.2'),
(1411,698,'_wp_attached_file','2021/08/Asset-3.png'),
(1412,698,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:246;s:6:\"height\";i:70;s:4:\"file\";s:19:\"2021/08/Asset-3.png\";s:8:\"filesize\";i:3110;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Asset-3-150x70.png\";s:5:\"width\";i:150;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1413,699,'_wp_attached_file','2021/08/GCI-Light-Logo.png'),
(1414,699,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:197;s:6:\"height\";i:132;s:4:\"file\";s:26:\"2021/08/GCI-Light-Logo.png\";s:8:\"filesize\";i:4519;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"GCI-Light-Logo-150x132.png\";s:5:\"width\";i:150;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2546;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1416,701,'_wp_attached_file','2021/08/GuidoConstructionInc.-Small-Logo.png'),
(1417,701,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:231;s:6:\"height\";i:154;s:4:\"file\";s:44:\"2021/08/GuidoConstructionInc.-Small-Logo.png\";s:8:\"filesize\";i:5207;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"GuidoConstructionInc.-Small-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4824;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1463,41,'titlebar','off'),
(1464,22,'_oembed_d89d14412291e69c1b83a0e56f17789b','<iframe title=\"Guido Construction, Inc. Promotional Video\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/bMKLX3teORY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),
(1465,22,'_oembed_time_d89d14412291e69c1b83a0e56f17789b','1767647932'),
(1466,719,'_wpb_post_custom_layout','default'),
(1467,719,'_wpb_shortcodes_default_css','.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}.vc_do_cta3{padding-top:28px;padding-right:28px;padding-bottom:28px;padding-left:28px;margin-bottom:35px;}.vc_do_btn{margin-bottom:22px;}.vc_do_custom_heading{margin-bottom:0.625rem;margin-top:0;}'),
(1468,719,'_wpb_shortcodes_default_css_updated','1'),
(1469,719,'_wpb_shortcodes_custom_css','.vc_custom_1630097308666{background-color: #002d5e !important;}.vc_custom_1630085697772{background-color: #141a3c !important;}.vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}'),
(1470,719,'_wpb_shortcodes_custom_css_updated','1'),
(1471,671,'_oembed_5b56ad5349101be4455a00e0218cdc7a','{{unknown}}'),
(1472,667,'_oembed_4b9d6b165ef68b329578c327f771d363','{{unknown}}');
/*!40000 ALTER TABLE `wpwn_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_posts`
--

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

--
-- Dumping data for table `wpwn_posts`
--

LOCK TABLES `wpwn_posts` WRITE;
/*!40000 ALTER TABLE `wpwn_posts` DISABLE KEYS */;
INSERT INTO `wpwn_posts` VALUES
(22,1,'2021-08-25 20:32:28','2021-08-25 20:32:28','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@guidoconstructioninc.com>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@guidoconstructioninc.com>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2021-08-25 20:32:28','2021-08-25 20:32:28','',0,'https://guidoconstructioninc.com/?post_type=wpcf7_contact_form&p=22',0,'wpcf7_contact_form','',0),
(24,1,'2021-08-25 20:32:29','2021-08-25 20:32:29','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2021-08-25 20:32:29','2021-08-25 20:32:29','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/woocommerce-placeholder.png',0,'attachment','image/png',0),
(32,1,'2021-08-25 21:17:39','2021-08-25 21:17:39','','topdown-drone-aerial-photography-concrete-pour-Guido_Construction','','inherit','open','closed','','topdown-drone-aerial-photography-concrete-pour-guido_construction','','','2021-08-25 21:17:39','2021-08-25 21:17:39','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/topdown-drone-aerial-photography-concrete-pour-Guido_Construction.jpg',0,'attachment','image/jpeg',0),
(41,1,'2021-08-25 22:05:29','2021-08-25 22:05:29','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_empty_space height=\"80px\"][vc_single_image image=\"667\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"blue\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"blue\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" css=\".vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" offset=\"vc_hidden-sm vc_hidden-xs\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1758670135719-534cad9c-e120-3\" include=\"583,582,581\"][vc_empty_space][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1758670135720-6cf487fe-f452-10\" include=\"531,359,378\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInLeft\" link=\"http://guidoconstructioninc.com/portfolio\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInUp\" link=\"http://guidoconstructioninc.com/services\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInRight\" link=\"http://guidoconstructioninc.com/about-us\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1758670135722-d7ddbad4-f022-0\" include=\"267,266,271,265\"][vc_empty_space][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','publish','closed','closed','','home-2','','','2026-01-05 21:19:16','2026-01-05 21:19:16','',0,'https://guidoconstructioninc.com/?page_id=41',0,'page','',0),
(43,1,'2021-08-25 22:05:29','2021-08-25 22:05:29','','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-25 22:05:29','2021-08-25 22:05:29','',41,'https://guidoconstructioninc.com/?p=43',0,'revision','',0),
(45,1,'2021-08-25 22:12:41','2021-08-25 22:12:41','[vc_row][vc_column][smartslider3 slider=\"2\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-25 22:12:41','2021-08-25 22:12:41','',41,'https://guidoconstructioninc.com/?p=45',0,'revision','',0),
(47,1,'2021-08-25 22:20:56','2021-08-25 22:20:56','<p>[vc_row][vc_column][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"peacoc\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\"]</p>\n<p style=\"text-align: center;\">I am promo text. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n<p>[/vc_cta][/vc_column][/vc_row]</p>\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-25 22:20:56','2021-08-25 22:20:56','',41,'https://guidoconstructioninc.com/?p=47',0,'revision','',0),
(48,1,'2021-08-25 22:55:37','2021-08-25 22:55:37','[vc_row][vc_column width=\"5/6\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"peacoc\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\"]\r\n<p style=\"text-align: center;\">I am promo text. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-25 22:55:37','2021-08-25 22:55:37','',41,'https://guidoconstructioninc.com/?p=48',0,'revision','',0),
(49,1,'2021-08-25 22:59:31','2021-08-25 22:59:31','<p>[vc_row][vc_column width=\"5/6\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"peacoc\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\"]</p>\n<p style=\"text-align: center;\">I am promo text. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]</p>\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-25 22:59:31','2021-08-25 22:59:31','',41,'https://guidoconstructioninc.com/?p=49',0,'revision','',0),
(50,1,'2021-08-25 23:16:43','2021-08-25 23:16:43','','Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction','','inherit','open','closed','','roseburg-oregon-va-concrete-pour-aerial-photography-guido_construction','','','2021-08-25 23:16:43','2021-08-25 23:16:43','',41,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg',0,'attachment','image/jpeg',0),
(51,1,'2021-08-25 23:16:46','2021-08-25 23:16:46','','top-down-concrete-pour-jobsite-concrete-work-Guido_Construction','','inherit','open','closed','','top-down-concrete-pour-jobsite-concrete-work-guido_construction','','','2021-08-25 23:16:46','2021-08-25 23:16:46','',41,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/top-down-concrete-pour-jobsite-concrete-work-Guido_Construction.jpg',0,'attachment','image/jpeg',0),
(52,1,'2021-08-25 23:17:11','2021-08-25 23:17:11','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"peacoc\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\"]\r\n<p style=\"text-align: center;\">I am promo text. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1629933377294-3ca31cfc-0ed6-7\" include=\"50,51,32\"][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-25 23:17:11','2021-08-25 23:17:11','',41,'https://guidoconstructioninc.com/?p=52',0,'revision','',0),
(53,1,'2021-08-25 23:18:55','2021-08-25 23:18:55','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"peacoc\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\"]\r\n<p style=\"text-align: center;\">I am promo text. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1629933434478-70b36483-3201-3\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-25 23:18:55','2021-08-25 23:18:55','',41,'https://guidoconstructioninc.com/?p=53',0,'revision','',0),
(57,1,'2021-08-25 23:24:24','2021-08-25 23:24:24','[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">FOR ADDITIONAL INFORMATION</h3>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">PLEASE CONTACT US BY EMAIL AND ONE OF OUR ESTIMATORS WILL CONTACT YOU</h3>\r\n[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"GUIDO CONSTRUCTION\r\nCCB# 183146\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','Contact Us','','publish','closed','closed','','contact-us','','','2022-06-30 00:12:26','2022-06-30 00:12:26','',0,'https://guidoconstructioninc.com/?page_id=57',0,'page','',0),
(58,1,'2021-08-25 23:24:24','2021-08-25 23:24:24','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION SERVICES\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"45px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"PRE-CONSTRUCTION\r\nSERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"CONSTRUCTION\r\nSERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Foundations &amp; Footings</li>\r\n 	<li style=\"text-align: left;\">Structural Concrete</li>\r\n 	<li style=\"text-align: left;\">Decorative Colored Stamped Concrete</li>\r\n 	<li style=\"text-align: left;\">Commercial / Retail Concrete</li>\r\n 	<li style=\"text-align: left;\">Extruded Curb</li>\r\n 	<li style=\"text-align: left;\">Machined Curb &amp; Sidewalk</li>\r\n 	<li style=\"text-align: left;\">Architectural Stone</li>\r\n 	<li style=\"text-align: left;\">Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_custom_heading text=\"ASPHALT\r\nSERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Asphalt Paving</li>\r\n 	<li style=\"text-align: left;\">Asphalt Repairs</li>\r\n 	<li style=\"text-align: left;\">Grading</li>\r\n 	<li style=\"text-align: left;\">Crack Sealing</li>\r\n 	<li style=\"text-align: left;\">Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"QUALITY WORK AT COMPETITIVE RATES\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1637345546524-093004af-2a0b-2\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"PLAN, BUILD &amp; DELIVER\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">We have tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n[/vc_column_text][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1637345546526-08096ff1-be15-6\" include=\"270,263,267\"][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1637345546527-5a8e6634-a9d1-0\" include=\"99,96,92,101\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"CONTACT US FOR YOUR\r\nFREE PROJECT ESTIMATE\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','publish','closed','closed','','services','','','2021-11-19 18:12:52','2021-11-19 18:12:52','',0,'https://guidoconstructioninc.com/?page_id=58',0,'page','',0),
(59,1,'2021-08-25 23:24:24','2021-08-25 23:24:24','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/4LfhzISHbWY\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text css_animation=\"fadeInRight\" css=\"\"]\r\n<h4 style=\"text-align: center;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution-oriented people, we can tackle any problem.</h4>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327,515\" img_size=\"650x432\" onclick=\"link_no\" autoplay=\"yes\" wrap=\"yes\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"DECORATIVE &amp; ARCHITECTURAL CONCRETE\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space][vc_video link=\"https://youtu.be/Z_llwHT1zU0?si=GoM4xWLu_0t3L_rJ\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673755834-f78becfd-610b-6\" include=\"572,573,566,567,568,569,570,571\"][vc_media_grid element_width=\"2\" css=\"\" grid_id=\"vc_gid:1732673755834-532830e8-77e3-6\" include=\"556,555,554,552,553,562\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673755835-c9277240-2910-3\" include=\"547,545,546,560\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673755835-08caed5d-b260-1\" include=\"549,548,550,551\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" css=\"\" grid_id=\"vc_gid:1732673755836-49c8dd57-7bf3-8\" include=\"558,557,561,562,563,564\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673755837-95b3d993-5a7f-8\" include=\"538,531,540,539,541,542\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673755837-a3147223-f475-1\" include=\"512,513,511,509,510,518\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673755837-cee946a8-5024-5\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1732673755837-e54c814d-d539-4\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673755837-06e33894-c92d-5\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1732673755838-8c9ccb09-95d1-10\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1732673755838-41d2bf17-face-2\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1732673755838-87315f2b-e8d3-3\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1732673755838-ed309ef1-4dc7-10\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','publish','closed','closed','','portfolio','','','2024-11-27 02:16:45','2024-11-27 02:16:45','',0,'https://guidoconstructioninc.com/?page_id=59',0,'page','',0),
(60,1,'2021-08-25 23:24:24','2021-08-25 23:24:24','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1758674161122-5b06b169-256c-7\" include=\"583,582,581\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"40px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was born and raised locally in Roseburg and has over 37 years of building experience. His grandparents, Frank and Nina Guido, created many businesses including Umpqua Sand and Gravel - Concrete Service. Darby learned his work ethic, living and working on the Guido Ranch. Immersed from an early age in the culture of business and working.\r\n\r\nIn 1986, Darby began his career in business with Cradar Enterprises “Craig &amp; Darby” with Steve &amp; Peggy Guido. For the next 15 years, learning to build with Cradar helped Darby develop his management experience in Building and Concrete Construction. By 2000, Darby Guido purchased Mel Gregory’s equipment “his mentor in concrete”. With the support of family businesses in Construction, created a sole proprietorship “Darby Guido Construction”.\r\n\r\nFor 8 years, Darby Guido Construction experienced growth and a success in the concrete industry, by completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company became incorporated in 2008 to Guido Construction Inc. In order to reflect the business growth with a long legacy in mind. Dorena Guido Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children are developing there professional roles within the business, with generational work ethics.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"269\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"671\" img_size=\"medium\" alignment=\"center\" css_animation=\"fadeInLeft\" css=\"\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"President &amp; CEO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text css=\"\"]Dorena is the esteemed leader at Guido Construction Inc. She takes great pride in her construction business, paving the way for women in the industry. Dorena highly values her heritage as a Tribal member of the Citizen Potawatomi Nation. In addition to being CEO, Dorena loves to spend time at the lake with her family and friends, playing fetch with her pups, and traveling.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Construction Manager &amp; COO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text css=\"\"]Darby is dedicated to the construction and concrete industry. Having grown up in the business and following in the footsteps of his forefathers, Darby views construction and concrete as both a passion and a vocation. Darby manages operations at Guido Construction Inc., overseeing crews and projects. In addition to playing with rocks, Darby enjoys family vacations, lake time, movie nights with his granddaughter, and gardening.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1758674161125-1ea00e90-3173-9\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','publish','closed','closed','','about-us','','','2025-09-24 00:39:08','2025-09-24 00:39:08','',0,'https://guidoconstructioninc.com/?page_id=60',0,'page','',0),
(61,1,'2021-08-25 23:24:24','2021-08-25 23:24:24','','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-25 23:24:24','2021-08-25 23:24:24','',57,'https://guidoconstructioninc.com/?p=61',0,'revision','',0),
(62,1,'2021-08-25 23:24:24','2021-08-25 23:24:24','','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-25 23:24:24','2021-08-25 23:24:24','',58,'https://guidoconstructioninc.com/?p=62',0,'revision','',0),
(63,1,'2021-08-25 23:24:24','2021-08-25 23:24:24','','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-25 23:24:24','2021-08-25 23:24:24','',59,'https://guidoconstructioninc.com/?p=63',0,'revision','',0),
(64,1,'2021-08-25 23:24:24','2021-08-25 23:24:24','','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-25 23:24:24','2021-08-25 23:24:24','',60,'https://guidoconstructioninc.com/?p=64',0,'revision','',0),
(65,1,'2021-08-25 23:24:24','2021-08-25 23:24:24',' ','','','publish','closed','closed','','65','','','2021-08-25 23:24:24','2021-08-25 23:24:24','',0,'https://guidoconstructioninc.com/2021/08/25/65/',1,'nav_menu_item','',0),
(66,1,'2021-08-25 23:24:24','2021-08-25 23:24:24',' ','','','publish','closed','closed','','66','','','2021-08-25 23:24:24','2021-08-25 23:24:24','',0,'https://guidoconstructioninc.com/2021/08/25/66/',4,'nav_menu_item','',0),
(67,1,'2021-08-25 23:24:24','2021-08-25 23:24:24',' ','','','publish','closed','closed','','67','','','2021-08-25 23:24:24','2021-08-25 23:24:24','',0,'https://guidoconstructioninc.com/2021/08/25/67/',2,'nav_menu_item','',0),
(68,1,'2021-08-25 23:24:24','2021-08-25 23:24:24',' ','','','publish','closed','closed','','68','','','2021-08-25 23:24:24','2021-08-25 23:24:24','',0,'https://guidoconstructioninc.com/2021/08/25/68/',3,'nav_menu_item','',0),
(69,1,'2021-08-25 23:24:24','2021-08-25 23:24:24',' ','','','publish','closed','closed','','69','','','2021-08-25 23:24:24','2021-08-25 23:24:24','',0,'https://guidoconstructioninc.com/2021/08/25/69/',5,'nav_menu_item','',0),
(70,1,'2021-08-26 00:08:43','2021-08-26 00:08:43','[vc_row parallax=\"content-moving\" parallax_image=\"51\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"peacoc\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1629934222821-6a596f43-d889-0\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-26 00:08:43','2021-08-26 00:08:43','',41,'https://guidoconstructioninc.com/?p=70',0,'revision','',0),
(71,1,'2021-08-26 00:14:35','2021-08-26 00:14:35','[vc_row parallax=\"content-moving\" parallax_image=\"51\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629936864669{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1629936526175-ecb125f7-dbf7-0\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-26 00:14:35','2021-08-26 00:14:35','',41,'https://guidoconstructioninc.com/?p=71',0,'revision','',0),
(72,1,'2021-08-26 00:14:59','2021-08-26 00:14:59','[vc_row parallax=\"content-moving\" parallax_image=\"51\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629936864669{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1629936877202-a41e8732-0055-3\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-26 00:14:59','2021-08-26 00:14:59','',41,'https://guidoconstructioninc.com/?p=72',0,'revision','',0),
(78,1,'2021-08-26 00:38:35','2021-08-26 00:38:35','','GuidoConstructionInc-roseburg-oregon-concrete-work','','inherit','open','closed','','guidoconstructioninc-roseburg-oregon-concrete-work','','','2021-08-26 00:38:35','2021-08-26 00:38:35','',41,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/GuidoConstructionInc-roseburg-oregon-concrete-work.jpg',0,'attachment','image/jpeg',0),
(79,1,'2021-08-26 00:38:42','2021-08-26 00:38:42','[vc_row parallax=\"content-moving\" parallax_image=\"78\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629936864669{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1629936901848-524d69cb-bc54-0\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-26 00:38:42','2021-08-26 00:38:42','',41,'https://guidoconstructioninc.com/?p=79',0,'revision','',0),
(80,1,'2021-08-26 00:42:25','2021-08-26 00:42:25','','Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image)','','inherit','open','closed','','concretebuilderssupply_construction_slider_image_rebar_concrete_plans_slider_image','','','2021-08-26 00:42:25','2021-08-26 00:42:25','',41,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image.jpg',0,'attachment','image/jpeg',0),
(81,1,'2021-08-26 00:54:34','2021-08-26 00:54:34','[vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Welcome To\r\n\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Guido Construction, Inc.\r\n\" font_container=\"tag:h2|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" parallax_image=\"78\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1629938324957-479088b0-f9dd-10\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-26 00:54:34','2021-08-26 00:54:34','',41,'https://guidoconstructioninc.com/?p=81',0,'revision','',0),
(82,1,'2021-08-26 00:55:10','2021-08-26 00:55:10','[vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h1|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" parallax_image=\"78\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1629939276308-0fb9b0c7-a1f1-4\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-26 00:55:10','2021-08-26 00:55:10','',41,'https://guidoconstructioninc.com/?p=82',0,'revision','',0),
(83,1,'2021-08-26 00:55:33','2021-08-26 00:55:33','[vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:justify|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" parallax_image=\"78\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1629939312671-8a52dfae-7a90-10\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-26 00:55:33','2021-08-26 00:55:33','',41,'https://guidoconstructioninc.com/?p=83',0,'revision','',0),
(84,1,'2021-08-26 00:55:48','2021-08-26 00:55:48','[vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" parallax_image=\"78\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1629939335529-78a65d3f-bfd1-2\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-26 00:55:48','2021-08-26 00:55:48','',41,'https://guidoconstructioninc.com/?p=84',0,'revision','',0),
(85,1,'2021-08-26 01:03:01','2021-08-26 01:03:01','[vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" parallax_image=\"78\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1629939728359-bdd7c4c4-9d4f-4\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-26 01:03:01','2021-08-26 01:03:01','',41,'https://guidoconstructioninc.com/?p=85',0,'revision','',0),
(86,1,'2021-08-26 01:05:40','2021-08-26 01:05:40','[vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1629939935713{background-color: #636363 !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1629939783228-bb88ef98-bb84-4\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-26 01:05:40','2021-08-26 01:05:40','',41,'https://guidoconstructioninc.com/?p=86',0,'revision','',0),
(87,1,'2021-08-26 01:06:37','2021-08-26 01:06:37','[vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1629939935713{background-color: #636363 !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1629939942880-b2ff7cc1-732b-1\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-26 01:06:37','2021-08-26 01:06:37','',41,'https://guidoconstructioninc.com/?p=87',0,'revision','',0),
(88,1,'2021-08-26 01:07:00','2021-08-26 01:07:00','[vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1629939935713{background-color: #636363 !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1629939999297-d27c7236-0eae-9\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-26 01:07:00','2021-08-26 01:07:00','',41,'https://guidoconstructioninc.com/?p=88',0,'revision','',0),
(89,1,'2021-08-26 01:12:24','2021-08-26 01:12:24','[vc_row css=\".vc_custom_1629940341172{background-color: #00417a !important;}\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1629939935713{background-color: #636363 !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1629940235815-7acf57b9-7585-8\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-26 01:12:24','2021-08-26 01:12:24','',41,'https://guidoconstructioninc.com/?p=89',0,'revision','',0),
(90,1,'2021-08-26 01:13:23','2021-08-26 01:13:23','[vc_row css=\".vc_custom_1629940401083{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"125px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1629939935713{background-color: #636363 !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1629940346535-74b18938-76bd-1\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-26 01:13:23','2021-08-26 01:13:23','',41,'https://guidoconstructioninc.com/?p=90',0,'revision','',0),
(91,1,'2021-08-26 20:01:06','2021-08-26 20:01:06','','Guido Construction- VA JOBSITE-01','','inherit','open','closed','','guido-construction-va-jobsite-01','','','2021-08-26 20:01:06','2021-08-26 20:01:06','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-VA-JOBSITE-01.jpg',0,'attachment','image/jpeg',0),
(92,1,'2021-08-26 20:01:11','2021-08-26 20:01:11','','Guido Construction- VA JOBSITE-02','','inherit','open','closed','','guido-construction-va-jobsite-02','','','2021-08-26 20:01:11','2021-08-26 20:01:11','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-VA-JOBSITE-02.jpg',0,'attachment','image/jpeg',0),
(93,1,'2021-08-26 20:01:16','2021-08-26 20:01:16','','Guido Construction- VA JOBSITE-03','','inherit','open','closed','','guido-construction-va-jobsite-03','','','2021-08-26 20:01:16','2021-08-26 20:01:16','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-VA-JOBSITE-03.jpg',0,'attachment','image/jpeg',0),
(94,1,'2021-08-26 20:01:21','2021-08-26 20:01:21','','Guido Construction- VA JOBSITE-04','','inherit','open','closed','','guido-construction-va-jobsite-04','','','2021-08-26 20:01:21','2021-08-26 20:01:21','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-VA-JOBSITE-04.jpg',0,'attachment','image/jpeg',0),
(95,1,'2021-08-26 20:01:25','2021-08-26 20:01:25','','Guido Construction- VA JOBSITE-05','','inherit','open','closed','','guido-construction-va-jobsite-05','','','2021-08-26 20:01:25','2021-08-26 20:01:25','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-VA-JOBSITE-05.jpg',0,'attachment','image/jpeg',0),
(96,1,'2021-08-26 20:01:30','2021-08-26 20:01:30','','Guido Construction- VA JOBSITE-06','','inherit','open','closed','','guido-construction-va-jobsite-06','','','2021-08-26 20:01:30','2021-08-26 20:01:30','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-VA-JOBSITE-06.jpg',0,'attachment','image/jpeg',0),
(97,1,'2021-08-26 20:01:34','2021-08-26 20:01:34','','Guido Construction- VA JOBSITE-07','','inherit','open','closed','','guido-construction-va-jobsite-07','','','2021-08-26 20:01:34','2021-08-26 20:01:34','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-VA-JOBSITE-07.jpg',0,'attachment','image/jpeg',0),
(98,1,'2021-08-26 20:01:39','2021-08-26 20:01:39','','Guido Construction- VA JOBSITE-08','','inherit','open','closed','','guido-construction-va-jobsite-08','','','2021-08-26 20:01:39','2021-08-26 20:01:39','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-VA-JOBSITE-08.jpg',0,'attachment','image/jpeg',0),
(99,1,'2021-08-26 20:01:44','2021-08-26 20:01:44','','Guido Construction- VA JOBSITE-09','','inherit','open','closed','','guido-construction-va-jobsite-09','','','2021-08-26 20:01:44','2021-08-26 20:01:44','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-VA-JOBSITE-09.jpg',0,'attachment','image/jpeg',0),
(100,1,'2021-08-26 20:01:49','2021-08-26 20:01:49','','Guido Construction- VA JOBSITE-10','','inherit','open','closed','','guido-construction-va-jobsite-10','','','2021-08-26 20:01:49','2021-08-26 20:01:49','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-VA-JOBSITE-10.jpg',0,'attachment','image/jpeg',0),
(101,1,'2021-08-26 20:01:56','2021-08-26 20:01:56','','Guido Construction- VA JOBSITE-11','','inherit','open','closed','','guido-construction-va-jobsite-11','','','2021-08-26 20:01:56','2021-08-26 20:01:56','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-VA-JOBSITE-11.jpg',0,'attachment','image/jpeg',0),
(102,1,'2021-08-26 20:02:01','2021-08-26 20:02:01','','Guido Construction- VA JOBSITE-12','','inherit','open','closed','','guido-construction-va-jobsite-12','','','2021-08-26 20:02:01','2021-08-26 20:02:01','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-VA-JOBSITE-12.jpg',0,'attachment','image/jpeg',0),
(103,1,'2021-08-26 22:55:45','2021-08-26 22:55:45','','B&W Guido Construction Logo','','inherit','open','closed','','bw-guido-construction-logo','','','2021-08-26 22:55:45','2021-08-26 22:55:45','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/BW-Guido-Construction-Logo.png',0,'attachment','image/png',0),
(104,1,'2021-08-26 22:55:45','2021-08-26 22:55:45','','Guido Construcion Icon','','inherit','open','closed','','guido-construcion-icon','','','2021-08-26 22:55:45','2021-08-26 22:55:45','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construcion-Icon.png',0,'attachment','image/png',0),
(105,1,'2021-08-26 22:55:46','2021-08-26 22:55:46','','Horizontal Guido Construction Logo','','inherit','open','closed','','horizontal-guido-construction-logo','','','2021-08-26 22:55:46','2021-08-26 22:55:46','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Horizontal-Guido-Construction-Logo.png',0,'attachment','image/png',0),
(106,1,'2021-08-26 22:55:47','2021-08-26 22:55:47','','Vertical Guido Construction Logo','','inherit','open','closed','','vertical-guido-construction-logo','','','2021-08-26 22:55:47','2021-08-26 22:55:47','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Vertical-Guido-Construction-Logo.png',0,'attachment','image/png',0),
(109,1,'2021-08-27 17:34:18','2021-08-27 17:34:18','[vc_row css=\".vc_custom_1629940401083{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"125px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1629939935713{background-color: #636363 !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1630085604280-d21d52b0-f150-1\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-27 17:34:18','2021-08-27 17:34:18','',41,'https://guidoconstructioninc.com/?p=109',0,'revision','',0),
(110,1,'2021-08-27 17:34:59','2021-08-27 17:34:59','[vc_row css=\".vc_custom_1629940401083{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"125px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1630085663026-bbff0edd-dc53-6\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-27 17:34:59','2021-08-27 17:34:59','',41,'https://guidoconstructioninc.com/?p=110',0,'revision','',0),
(112,1,'2021-08-27 17:47:52','2021-08-27 17:47:52','','Guido Construction Secondary Logo Vertical','','inherit','open','closed','','guido-construction-secondary-logo-vertical','','','2021-08-31 00:00:59','2021-08-31 00:00:59','',60,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png',0,'attachment','image/png',0),
(115,1,'2021-08-27 17:50:12','2021-08-27 17:50:12','[vc_row css=\".vc_custom_1629940401083{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"125px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1630086590729-4b1a85ef-464b-1\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-27 17:50:12','2021-08-27 17:50:12','',41,'https://guidoconstructioninc.com/?p=115',0,'revision','',0),
(116,1,'2021-08-27 18:48:33','2021-08-27 18:48:33','','GC ICON','','inherit','open','closed','','gc-icon','','','2021-08-27 18:48:33','2021-08-27 18:48:33','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/GC-ICON.png',0,'attachment','image/png',0),
(118,1,'2021-08-27 19:48:20','2021-08-27 19:48:20','[vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\" css_animation=\"\" title=\"\" el_id=\"\" el_class=\"\" css=\"\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][lambert_parallax_section_title title_text=\"\" subtitle_text=\"\" show_decor=\"\" el_class=\"\" css=\"\"][/lambert_parallax_section_title][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 19:48:20','2021-08-27 19:48:20','',57,'https://guidoconstructioninc.com/?p=118',0,'revision','',0),
(119,1,'2021-08-27 19:58:58','2021-08-27 19:58:58','[vc_row][vc_column][vc_empty_space height=\"200px\" css=\".vc_custom_1630094327954{background-color: #8da2bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][lambert_parallax_section_title title_text=\"Contact Us\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630094058173{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-VA-JOBSITE-12.jpg?id=102) !important;}\"][/lambert_parallax_section_title][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 19:58:58','2021-08-27 19:58:58','',57,'https://guidoconstructioninc.com/?p=119',0,'revision','',0),
(120,1,'2021-08-27 20:02:36','2021-08-27 20:02:36','[vc_row][vc_column][vc_empty_space height=\"150px\" css=\".vc_custom_1630094554815{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][lambert_parallax_section_title title_text=\"Contact Us\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630094389111{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_custom_heading text=\"Call\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Email\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 20:02:36','2021-08-27 20:02:36','',57,'https://guidoconstructioninc.com/?p=120',0,'revision','',0),
(121,1,'2021-08-27 20:07:10','2021-08-27 20:07:10','[vc_row][vc_column][vc_empty_space height=\"150px\" css=\".vc_custom_1630094554815{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][lambert_parallax_section_title title_text=\"Contact Us\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630094389111{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 20:07:10','2021-08-27 20:07:10','',57,'https://guidoconstructioninc.com/?p=121',0,'revision','',0),
(122,1,'2021-08-27 20:15:11','2021-08-27 20:15:11','[vc_row][vc_column][vc_empty_space height=\"150px\" css=\".vc_custom_1630095298336{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" css=\".vc_custom_1630095309993{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 20:15:11','2021-08-27 20:15:11','',57,'https://guidoconstructioninc.com/?p=122',0,'revision','',0),
(123,1,'2021-08-27 20:17:29','2021-08-27 20:17:29','[vc_row][vc_column][vc_empty_space height=\"150px\" css=\".vc_custom_1630095298336{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" css=\".vc_custom_1630095309993{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\" css=\".vc_custom_1630095404996{background-color: #316fbc !important;}\"][/vc_column][vc_column width=\"1/5\" css=\".vc_custom_1630095391782{background-color: #316fbc !important;}\"][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\" css=\".vc_custom_1630095448054{background-color: #316fbc !important;}\"][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\" css=\".vc_custom_1630095427890{background-color: #316fbc !important;}\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 20:17:29','2021-08-27 20:17:29','',57,'https://guidoconstructioninc.com/?p=123',0,'revision','',0),
(124,1,'2021-08-27 20:18:38','2021-08-27 20:18:38','[vc_row][vc_column][vc_empty_space height=\"150px\" css=\".vc_custom_1630095298336{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" css=\".vc_custom_1630095309993{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630095515845{background-color: #316fbc !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 20:18:38','2021-08-27 20:18:38','',57,'https://guidoconstructioninc.com/?p=124',0,'revision','',0),
(125,1,'2021-08-27 20:23:21','2021-08-27 20:23:21','<label> Your name\r\n    [text* your-name] </label>\r\n\r\n<label> Your email\r\n    [email* your-email] </label>\r\n\r\n<label> Subject\r\n    [text* your-subject] </label>\r\n\r\n<label> Your message (optional)\r\n    [textarea your-message] </label>\r\n\r\n[submit \"Submit\"]\n1\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@guidoconstructioninc.com>\n[_site_admin_email]\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@guidoconstructioninc.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact Us','','publish','closed','closed','','contact-us','','','2021-08-27 20:23:21','2021-08-27 20:23:21','',0,'https://guidoconstructioninc.com/?post_type=wpcf7_contact_form&p=125',0,'wpcf7_contact_form','',0),
(127,1,'2021-08-27 20:40:50','2021-08-27 20:40:50','[vc_row][vc_column][vc_empty_space height=\"150px\" css=\".vc_custom_1630095298336{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" css=\".vc_custom_1630095309993{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630095515845{background-color: #316fbc !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 20:40:50','2021-08-27 20:40:50','',57,'https://guidoconstructioninc.com/?p=127',0,'revision','',0),
(128,1,'2021-08-27 20:44:21','2021-08-27 20:44:21','','Guido Construction Typographical Logo','','inherit','open','closed','','guido-construction-typographical-logo','','','2021-08-27 20:44:21','2021-08-27 20:44:21','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Typographical-Logo.png',0,'attachment','image/png',0),
(130,1,'2021-08-27 20:48:32','2021-08-27 20:48:32','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"125px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1630097270165-7b649918-a19a-9\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-08-27 20:48:32','2021-08-27 20:48:32','',41,'https://guidoconstructioninc.com/?p=130',0,'revision','',0),
(133,1,'2021-08-27 20:54:03','2021-08-27 20:54:03','[vc_row][vc_column][vc_empty_space height=\"150px\" css=\".vc_custom_1630095298336{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" css=\".vc_custom_1630095309993{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630095515845{background-color: #316fbc !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 20:54:03','2021-08-27 20:54:03','',57,'https://guidoconstructioninc.com/?p=133',0,'revision','',0),
(134,1,'2021-08-27 20:59:07','2021-08-27 20:59:07','[vc_row][vc_column][vc_empty_space height=\"150px\" css=\".vc_custom_1630095298336{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630097788927{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630095515845{background-color: #316fbc !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text css_animation=\"fadeInLeft\"]For additional information please contact us by email and one of estimators will contact you.[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_column_text css_animation=\"fadeInRight\"][/vc_column_text][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 20:59:07','2021-08-27 20:59:07','',57,'https://guidoconstructioninc.com/?p=134',0,'revision','',0),
(135,1,'2021-08-27 21:01:50','2021-08-27 21:01:50','[vc_row][vc_column][vc_empty_space height=\"150px\" css=\".vc_custom_1630095298336{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630097788927{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630095515845{background-color: #316fbc !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_column_text css_animation=\"fadeInLeft\"]For additional information please contact us by email and one of estimators will contact you.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text css_animation=\"fadeInRight\"][contact-form-7 id=\"22\" title=\"Contact form 1\"][/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 21:01:50','2021-08-27 21:01:50','',57,'https://guidoconstructioninc.com/?p=135',0,'revision','',0),
(136,1,'2021-08-27 21:04:09','2021-08-27 21:04:09','[vc_row][vc_column][vc_empty_space height=\"150px\" css=\".vc_custom_1630095298336{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630097788927{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630098211794{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/GuidoConstructionInc-roseburg-oregon-concrete-work.jpg?id=78) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInLeft\"]For additional information please contact us by email and one of our estimators will contact you.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text css_animation=\"fadeInRight\"][contact-form-7 id=\"22\" title=\"Contact form 1\"][/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 21:04:09','2021-08-27 21:04:09','',57,'https://guidoconstructioninc.com/?p=136',0,'revision','',0),
(137,1,'2021-08-27 21:05:21','2021-08-27 21:05:21','[vc_row][vc_column][vc_empty_space height=\"150px\" css=\".vc_custom_1630095298336{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630097788927{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630098280113{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image.jpg?id=80) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInLeft\"]For additional information please contact us by email and one of our estimators will contact you.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_column_text css_animation=\"fadeInRight\"][contact-form-7 id=\"22\" title=\"Contact form 1\"][/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 21:05:21','2021-08-27 21:05:21','',57,'https://guidoconstructioninc.com/?p=137',0,'revision','',0),
(138,1,'2021-08-27 21:06:59','2021-08-27 21:06:59','[vc_row][vc_column][vc_empty_space height=\"150px\" css=\".vc_custom_1630095298336{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630097788927{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: center;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][/vc_column][vc_column width=\"1/5\"][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630098280113{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image.jpg?id=80) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 21:06:59','2021-08-27 21:06:59','',57,'https://guidoconstructioninc.com/?p=138',0,'revision','',0),
(139,1,'2021-08-27 21:08:54','2021-08-27 21:08:54','[vc_row][vc_column][vc_empty_space height=\"150px\" css=\".vc_custom_1630095298336{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630097788927{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" parallax_image=\"80\" css_animation=\"fadeInUp\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: center;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630098280113{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image.jpg?id=80) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 21:08:54','2021-08-27 21:08:54','',57,'https://guidoconstructioninc.com/?p=139',0,'revision','',0),
(140,1,'2021-08-27 21:11:29','2021-08-27 21:11:29','[vc_row][vc_column][vc_empty_space height=\"150px\" css=\".vc_custom_1630095298336{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630097788927{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" parallax_image=\"80\" css_animation=\"fadeInUp\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center; color: orange;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630098280113{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image.jpg?id=80) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 21:11:29','2021-08-27 21:11:29','',57,'https://guidoconstructioninc.com/?p=140',0,'revision','',0),
(141,1,'2021-08-27 21:13:11','2021-08-27 21:13:11','[vc_row][vc_column][vc_empty_space height=\"150px\" css=\".vc_custom_1630095298336{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630097788927{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" parallax_image=\"80\" css_animation=\"fadeInUp\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: center;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center; color: orange;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630098280113{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image.jpg?id=80) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 21:13:11','2021-08-27 21:13:11','',57,'https://guidoconstructioninc.com/?p=141',0,'revision','',0),
(142,1,'2021-08-27 21:50:49','2021-08-27 21:50:49','[vc_row][vc_column][vc_empty_space height=\"150px\" css=\".vc_custom_1630095298336{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630097788927{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" parallax_image=\"80\" css_animation=\"fadeInUp\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 2px 2px #ffffff;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630098280113{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Concretebuilderssupply_Construction_slider_image_rebar_concrete_plans_slider_image.jpg?id=80) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 21:50:49','2021-08-27 21:50:49','',57,'https://guidoconstructioninc.com/?p=142',0,'revision','',0),
(143,1,'2021-08-27 21:51:17','2021-08-27 21:51:17','<p>[vc_row][vc_column][vc_empty_space height=\"150px\" css=\".vc_custom_1630095298336{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630097788927{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" parallax_image=\"80\" css_animation=\"fadeInUp\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 2px 2px #ffffff;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct<br />\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630101076514{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 21:51:17','2021-08-27 21:51:17','',57,'https://guidoconstructioninc.com/?p=143',0,'revision','',0),
(144,1,'2021-08-27 21:51:46','2021-08-27 21:51:46','<p>[vc_row][vc_column][vc_empty_space height=\"150px\" css=\".vc_custom_1630095298336{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630097788927{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" parallax_image=\"80\" css_animation=\"fadeInUp\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 2px 2px #ffffff;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct<br />\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630101076514{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-08-27 21:51:46','2021-08-27 21:51:46','',57,'https://guidoconstructioninc.com/?p=144',0,'revision','',0),
(146,1,'2021-08-27 22:01:21','2021-08-27 22:01:21','<p>[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Plan, Build & Deliver\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"51\" img_size=\"medium\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 22:01:21','2021-08-27 22:01:21','',58,'https://guidoconstructioninc.com/?p=146',0,'revision','',0),
(147,1,'2021-08-27 22:02:50','2021-08-27 22:02:50','<p>[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Plan, Build & Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"51\" img_size=\"medium\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 22:02:50','2021-08-27 22:02:50','',58,'https://guidoconstructioninc.com/?p=147',0,'revision','',0),
(148,1,'2021-08-27 22:08:54','2021-08-27 22:08:54','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"51\" img_size=\"medium\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 22:08:54','2021-08-27 22:08:54','',58,'https://guidoconstructioninc.com/?p=148',0,'revision','',0),
(149,1,'2021-08-27 22:09:23','2021-08-27 22:09:23','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"51\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 22:09:23','2021-08-27 22:09:23','',58,'https://guidoconstructioninc.com/?p=149',0,'revision','',0),
(150,1,'2021-08-27 22:13:02','2021-08-27 22:13:02','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 22:13:02','2021-08-27 22:13:02','',58,'https://guidoconstructioninc.com/?p=150',0,'revision','',0),
(151,1,'2021-08-27 22:13:31','2021-08-27 22:13:31','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 22:13:31','2021-08-27 22:13:31','',58,'https://guidoconstructioninc.com/?p=151',0,'revision','',0),
(152,1,'2021-08-27 22:17:37','2021-08-27 22:17:37','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" tooltips=\"\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 22:17:37','2021-08-27 22:17:37','',58,'https://guidoconstructioninc.com/?p=152',0,'revision','',0),
(153,1,'2021-08-27 22:18:06','2021-08-27 22:18:06','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 22:18:06','2021-08-27 22:18:06','',58,'https://guidoconstructioninc.com/?p=153',0,'revision','',0),
(154,1,'2021-08-27 22:18:45','2021-08-27 22:18:45','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 22:18:45','2021-08-27 22:18:45','',58,'https://guidoconstructioninc.com/?p=154',0,'revision','',0),
(155,1,'2021-08-27 22:19:38','2021-08-27 22:19:38','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 22:19:38','2021-08-27 22:19:38','',58,'https://guidoconstructioninc.com/?p=155',0,'revision','',0),
(156,1,'2021-08-27 22:46:49','2021-08-27 22:46:49','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 22:46:49','2021-08-27 22:46:49','',58,'https://guidoconstructioninc.com/?p=156',0,'revision','',0),
(157,1,'2021-08-27 22:50:10','2021-08-27 22:50:10','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 22:50:10','2021-08-27 22:50:10','',58,'https://guidoconstructioninc.com/?p=157',0,'revision','',0),
(158,1,'2021-08-27 22:50:34','2021-08-27 22:50:34','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 22:50:34','2021-08-27 22:50:34','',58,'https://guidoconstructioninc.com/?p=158',0,'revision','',0),
(159,1,'2021-08-27 22:53:44','2021-08-27 22:53:44','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_separator style=\"shadow\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 22:53:44','2021-08-27 22:53:44','',58,'https://guidoconstructioninc.com/?p=159',0,'revision','',0),
(160,1,'2021-08-27 22:54:41','2021-08-27 22:54:41','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 22:54:41','2021-08-27 22:54:41','',58,'https://guidoconstructioninc.com/?p=160',0,'revision','',0),
(161,1,'2021-08-27 23:01:31','2021-08-27 23:01:31','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630104924177-40fde2c3-06fe-6\" include=\"94,102,93,91\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Contact Us For Your Free Project Estimate\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 23:01:31','2021-08-27 23:01:31','',58,'https://guidoconstructioninc.com/?p=161',0,'revision','',0),
(162,1,'2021-08-27 23:02:37','2021-08-27 23:02:37','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630105294649-5003b2a6-1d46-9\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Contact Us For Your Free Project Estimate\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 23:02:37','2021-08-27 23:02:37','',58,'https://guidoconstructioninc.com/?p=162',0,'revision','',0),
(163,1,'2021-08-27 23:07:00','2021-08-27 23:07:00','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630105361410-2a9b63e7-016b-10\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">We tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Contact Us For Your Free Project Estimate\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 23:07:00','2021-08-27 23:07:00','',58,'https://guidoconstructioninc.com/?p=163',0,'revision','',0),
(164,1,'2021-08-27 23:07:50','2021-08-27 23:07:50','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630105624155-9042865c-ecb5-9\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">We tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Contact Us For Your\r\nFree Project Estimate\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 23:07:50','2021-08-27 23:07:50','',58,'https://guidoconstructioninc.com/?p=164',0,'revision','',0),
(165,1,'2021-08-27 23:09:40','2021-08-27 23:09:40','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630105673929-33051817-60e8-8\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">We tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n[/vc_column_text][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630105700562-4a213c95-40ae-9\" include=\"91,99,96,101\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Contact Us For Your\r\nFree Project Estimate\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 23:09:40','2021-08-27 23:09:40','',58,'https://guidoconstructioninc.com/?p=165',0,'revision','',0),
(166,1,'2021-08-27 23:11:04','2021-08-27 23:11:04','','default','default','inherit','open','closed','','default','','','2021-08-27 23:11:04','2021-08-27 23:11:04','',58,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-VA-JOBSITE-Drone-Photos-2.jpg',0,'attachment','image/jpeg',0),
(167,1,'2021-08-27 23:11:41','2021-08-27 23:11:41','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630105784486-f0d039c4-3c8d-7\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">We tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n[/vc_column_text][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630105784488-b8cbe138-6d40-2\" include=\"99,96,101,92\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Contact Us For Your\r\nFree Project Estimate\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 23:11:41','2021-08-27 23:11:41','',58,'https://guidoconstructioninc.com/?p=167',0,'revision','',0),
(168,1,'2021-08-27 23:12:15','2021-08-27 23:12:15','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630105905164-0d122e8d-1c51-10\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">We tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n[/vc_column_text][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630105927844-127218eb-8135-0\" include=\"99,96,92,101\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Contact Us For Your\r\nFree Project Estimate\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 23:12:15','2021-08-27 23:12:15','',58,'https://guidoconstructioninc.com/?p=168',0,'revision','',0),
(169,1,'2021-08-27 23:14:16','2021-08-27 23:14:16','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"30px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630105938969-6def9676-8bc1-0\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">We tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n[/vc_column_text][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630105938971-9520ad37-307b-2\" include=\"99,96,92,101\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Contact Us For Your\r\nFree Project Estimate\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 23:14:16','2021-08-27 23:14:16','',58,'https://guidoconstructioninc.com/?p=169',0,'revision','',0),
(170,1,'2021-08-27 23:15:25','2021-08-27 23:15:25','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"45px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Foundations &amp; Footings</li>\r\n 	<li>Structural Concrete</li>\r\n 	<li>Decorative Colored Stamped Concrete</li>\r\n 	<li>Commercial / Retail Concrete</li>\r\n 	<li>Extruded Curb</li>\r\n 	<li>Machined Curb &amp; Sidewalk</li>\r\n 	<li>Architectural Stone</li>\r\n 	<li>Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>Asphalt Paving</li>\r\n 	<li>Asphalt Repairs</li>\r\n 	<li>Grading</li>\r\n 	<li>Crack Sealing</li>\r\n 	<li>Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630106071677-3009c7d7-8ac8-10\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">We tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n[/vc_column_text][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630106071679-4461f2cc-2f9f-3\" include=\"99,96,92,101\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Contact Us For Your\r\nFree Project Estimate\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 23:15:25','2021-08-27 23:15:25','',58,'https://guidoconstructioninc.com/?p=170',0,'revision','',0),
(171,1,'2021-08-27 23:21:32','2021-08-27 23:21:32','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"45px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Foundations &amp; Footings</li>\r\n 	<li style=\"text-align: left;\">Structural Concrete</li>\r\n 	<li style=\"text-align: left;\">Decorative Colored Stamped Concrete</li>\r\n 	<li style=\"text-align: left;\">Commercial / Retail Concrete</li>\r\n 	<li style=\"text-align: left;\">Extruded Curb</li>\r\n 	<li style=\"text-align: left;\">Machined Curb &amp; Sidewalk</li>\r\n 	<li style=\"text-align: left;\">Architectural Stone</li>\r\n 	<li style=\"text-align: left;\">Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Asphalt Paving</li>\r\n 	<li style=\"text-align: left;\">Asphalt Repairs</li>\r\n 	<li style=\"text-align: left;\">Grading</li>\r\n 	<li style=\"text-align: left;\">Crack Sealing</li>\r\n 	<li style=\"text-align: left;\">Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630106129145-2191768b-251b-9\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">We tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n[/vc_column_text][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630106129146-d08a14e1-9b7e-4\" include=\"99,96,92,101\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Contact Us For Your\r\nFree Project Estimate\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 23:21:32','2021-08-27 23:21:32','',58,'https://guidoconstructioninc.com/?p=171',0,'revision','',0),
(172,1,'2021-08-27 23:39:26','2021-08-27 23:39:26','','Caution Area Construction Icon','','inherit','open','closed','','caution-area-construction-icon','','','2021-08-27 23:39:26','2021-08-27 23:39:26','',58,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Caution-Area-Construction-Icon.png',0,'attachment','image/png',0),
(173,1,'2021-08-27 23:39:27','2021-08-27 23:39:27','','Concrete Roller Icon','','inherit','open','closed','','concrete-roller-icon','','','2021-08-27 23:39:27','2021-08-27 23:39:27','',58,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Concrete-Roller-Icon.png',0,'attachment','image/png',0),
(174,1,'2021-08-27 23:39:27','2021-08-27 23:39:27','','Concrete Truck Icon','','inherit','open','closed','','concrete-truck-icon','','','2021-08-27 23:39:27','2021-08-27 23:39:27','',58,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Concrete-Truck-Icon.png',0,'attachment','image/png',0),
(175,1,'2021-08-27 23:39:28','2021-08-27 23:39:28','','Construction Plans Icon','','inherit','open','closed','','construction-plans-icon','','','2021-08-27 23:39:28','2021-08-27 23:39:28','',58,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Construction-Plans-Icon.png',0,'attachment','image/png',0),
(176,1,'2021-08-27 23:39:29','2021-08-27 23:39:29','','Hard Hat Construction Icon','','inherit','open','closed','','hard-hat-construction-icon','','','2021-08-27 23:39:29','2021-08-27 23:39:29','',58,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png',0,'attachment','image/png',0),
(177,1,'2021-08-27 23:40:47','2021-08-27 23:40:47','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"45px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Foundations &amp; Footings</li>\r\n 	<li style=\"text-align: left;\">Structural Concrete</li>\r\n 	<li style=\"text-align: left;\">Decorative Colored Stamped Concrete</li>\r\n 	<li style=\"text-align: left;\">Commercial / Retail Concrete</li>\r\n 	<li style=\"text-align: left;\">Extruded Curb</li>\r\n 	<li style=\"text-align: left;\">Machined Curb &amp; Sidewalk</li>\r\n 	<li style=\"text-align: left;\">Architectural Stone</li>\r\n 	<li style=\"text-align: left;\">Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Asphalt Paving</li>\r\n 	<li style=\"text-align: left;\">Asphalt Repairs</li>\r\n 	<li style=\"text-align: left;\">Grading</li>\r\n 	<li style=\"text-align: left;\">Crack Sealing</li>\r\n 	<li style=\"text-align: left;\">Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630106497680-f4625010-34ca-0\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">We tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n[/vc_column_text][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630106497681-6e658a84-ad89-7\" include=\"99,96,92,101\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Contact Us For Your\r\nFree Project Estimate\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 23:40:47','2021-08-27 23:40:47','',58,'https://guidoconstructioninc.com/?p=177',0,'revision','',0),
(178,1,'2021-08-27 23:41:06','2021-08-27 23:41:06','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"45px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Foundations &amp; Footings</li>\r\n 	<li style=\"text-align: left;\">Structural Concrete</li>\r\n 	<li style=\"text-align: left;\">Decorative Colored Stamped Concrete</li>\r\n 	<li style=\"text-align: left;\">Commercial / Retail Concrete</li>\r\n 	<li style=\"text-align: left;\">Extruded Curb</li>\r\n 	<li style=\"text-align: left;\">Machined Curb &amp; Sidewalk</li>\r\n 	<li style=\"text-align: left;\">Architectural Stone</li>\r\n 	<li style=\"text-align: left;\">Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Asphalt Paving</li>\r\n 	<li style=\"text-align: left;\">Asphalt Repairs</li>\r\n 	<li style=\"text-align: left;\">Grading</li>\r\n 	<li style=\"text-align: left;\">Crack Sealing</li>\r\n 	<li style=\"text-align: left;\">Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630107651681-7267b5c4-182b-3\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">We tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n[/vc_column_text][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630107651683-e4cec71f-8a3c-1\" include=\"99,96,92,101\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Contact Us For Your\r\nFree Project Estimate\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 23:41:06','2021-08-27 23:41:06','',58,'https://guidoconstructioninc.com/?p=178',0,'revision','',0),
(179,1,'2021-08-27 23:44:54','2021-08-27 23:44:54','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"150px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"45px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Foundations &amp; Footings</li>\r\n 	<li style=\"text-align: left;\">Structural Concrete</li>\r\n 	<li style=\"text-align: left;\">Decorative Colored Stamped Concrete</li>\r\n 	<li style=\"text-align: left;\">Commercial / Retail Concrete</li>\r\n 	<li style=\"text-align: left;\">Extruded Curb</li>\r\n 	<li style=\"text-align: left;\">Machined Curb &amp; Sidewalk</li>\r\n 	<li style=\"text-align: left;\">Architectural Stone</li>\r\n 	<li style=\"text-align: left;\">Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Asphalt Paving</li>\r\n 	<li style=\"text-align: left;\">Asphalt Repairs</li>\r\n 	<li style=\"text-align: left;\">Grading</li>\r\n 	<li style=\"text-align: left;\">Crack Sealing</li>\r\n 	<li style=\"text-align: left;\">Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630107670299-8b2efe06-7249-6\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">We tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n[/vc_column_text][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630107670303-3534b7d5-8aad-5\" include=\"99,96,92,101\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Contact Us For Your\r\nFree Project Estimate\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-08-27 23:44:54','2021-08-27 23:44:54','',58,'https://guidoconstructioninc.com/?p=179',0,'revision','',0),
(182,1,'2021-08-30 21:22:20','2021-08-30 21:22:20','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"From Start To Finish Or Anywhere Inbetween, We Can Help With Your Next Project\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][domik_owl_carousel][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 21:22:20','2021-08-30 21:22:20','',59,'https://guidoconstructioninc.com/?p=182',0,'revision','',0),
(183,1,'2021-08-30 21:23:28','2021-08-30 21:23:28','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"From Start To Finish Or Anywhere Inbetween, We Can Help With Your Next Project\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][domik_owl_carousel][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 21:23:28','2021-08-30 21:23:28','',59,'https://guidoconstructioninc.com/?p=183',0,'revision','',0),
(184,1,'2021-08-30 21:26:01','2021-08-30 21:26:01','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 21:26:01','2021-08-30 21:26:01','',59,'https://guidoconstructioninc.com/?p=184',0,'revision','',0),
(185,1,'2021-08-30 21:53:29','2021-08-30 21:53:29','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_single_image image=\"172\" img_size=\"medium\" alignment=\"right\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact Us\" style=\"custom\" custom_background=\"#316fbc\" custom_text=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\" button_block=\"true\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][cth_video_parallax bgimg=\"96\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 21:53:29','2021-08-30 21:53:29','',59,'https://guidoconstructioninc.com/?p=185',0,'revision','',0),
(186,1,'2021-08-30 21:54:57','2021-08-30 21:54:57','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_single_image image=\"172\" img_size=\"medium\" alignment=\"right\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:left|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"left\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][cth_video_parallax bgimg=\"96\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 21:54:57','2021-08-30 21:54:57','',59,'https://guidoconstructioninc.com/?p=186',0,'revision','',0),
(187,1,'2021-08-30 21:55:48','2021-08-30 21:55:48','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:justify|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][cth_video_parallax bgimg=\"96\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 21:55:48','2021-08-30 21:55:48','',59,'https://guidoconstructioninc.com/?p=187',0,'revision','',0),
(188,1,'2021-08-30 21:57:07','2021-08-30 21:57:07','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"2/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:justify|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column][cth_video_parallax bgimg=\"96\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 21:57:07','2021-08-30 21:57:07','',59,'https://guidoconstructioninc.com/?p=188',0,'revision','',0),
(189,1,'2021-08-30 21:57:27','2021-08-30 21:57:27','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"2/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column][cth_video_parallax bgimg=\"96\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 21:57:27','2021-08-30 21:57:27','',59,'https://guidoconstructioninc.com/?p=189',0,'revision','',0),
(190,1,'2021-08-30 21:57:45','2021-08-30 21:57:45','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][/vc_column][vc_column width=\"2/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column][cth_video_parallax bgimg=\"96\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 21:57:45','2021-08-30 21:57:45','',59,'https://guidoconstructioninc.com/?p=190',0,'revision','',0),
(191,1,'2021-08-30 21:59:54','2021-08-30 21:59:54','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][/vc_column][vc_column width=\"2/3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][cth_video_parallax bgimg=\"96\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630360726469-44614bf4-f779-9\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 21:59:54','2021-08-30 21:59:54','',59,'https://guidoconstructioninc.com/?p=191',0,'revision','',0),
(192,1,'2021-08-30 22:10:52','2021-08-30 22:10:52','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][/vc_column][vc_column width=\"2/3\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: left;\">WELCOME TO OUR PORTFOLIO</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_column_text]Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.[/vc_column_text][vc_empty_space height=\"15px\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][cth_video_parallax bgimg=\"96\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630360796927-21dfbfab-8cfc-3\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 22:10:52','2021-08-30 22:10:52','',59,'https://guidoconstructioninc.com/?p=192',0,'revision','',0),
(193,1,'2021-08-30 22:13:07','2021-08-30 22:13:07','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][/vc_column][vc_column width=\"2/3\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: left;\">WELCOME TO OUR PORTFOLIO</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][cth_video_parallax bgimg=\"96\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630361455064-f1c08bf7-3070-9\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 22:13:07','2021-08-30 22:13:07','',59,'https://guidoconstructioninc.com/?p=193',0,'revision','',0),
(194,1,'2021-08-30 22:14:24','2021-08-30 22:14:24','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: left;\">WELCOME TO OUR PORTFOLIO</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h4>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h4>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][cth_video_parallax bgimg=\"96\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630361589647-7bf4edb1-3eb9-1\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 22:14:24','2021-08-30 22:14:24','',59,'https://guidoconstructioninc.com/?p=194',0,'revision','',0),
(195,1,'2021-08-30 22:16:37','2021-08-30 22:16:37','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: left;\">WELCOME TO OUR PORTFOLIO</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<h4>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h4>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][cth_video_parallax bgimg=\"96\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630361667192-8c6b4e7d-4731-5\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 22:16:37','2021-08-30 22:16:37','',59,'https://guidoconstructioninc.com/?p=195',0,'revision','',0),
(196,1,'2021-08-30 22:17:44','2021-08-30 22:17:44','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/3\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: left;\">WELCOME TO OUR PORTFOLIO</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<h4>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h4>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][cth_video_parallax bgimg=\"96\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630361799854-d2bfbaf7-93d0-9\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 22:17:44','2021-08-30 22:17:44','',59,'https://guidoconstructioninc.com/?p=196',0,'revision','',0),
(197,1,'2021-08-30 22:19:20','2021-08-30 22:19:20','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: left;\">WELCOME TO OUR PORTFOLIO</h2>\r\n[/vc_column_text][vc_separator color=\"sky\" style=\"shadow\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<h4>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h4>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][cth_video_parallax bgimg=\"96\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630361867068-51628be1-aeb5-2\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 22:19:20','2021-08-30 22:19:20','',59,'https://guidoconstructioninc.com/?p=197',0,'revision','',0),
(198,1,'2021-08-30 22:21:46','2021-08-30 22:21:46','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_separator color=\"sky\" style=\"shadow\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<h4>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h4>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][cth_video_parallax bgimg=\"96\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630361963187-f1fe259f-1688-8\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 22:21:46','2021-08-30 22:21:46','',59,'https://guidoconstructioninc.com/?p=198',0,'revision','',0),
(199,1,'2021-08-30 22:22:20','2021-08-30 22:22:20','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_separator color=\"sky\" style=\"shadow\" border_width=\"2\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<h4>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h4>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][cth_video_parallax bgimg=\"96\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630362109449-104b7842-82a0-10\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 22:22:20','2021-08-30 22:22:20','',59,'https://guidoconstructioninc.com/?p=199',0,'revision','',0),
(200,1,'2021-08-30 22:23:19','2021-08-30 22:23:19','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_separator color=\"blue\" style=\"shadow\" border_width=\"2\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<h4>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h4>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][cth_video_parallax bgimg=\"96\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630362143186-05e218d4-8deb-6\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 22:23:19','2021-08-30 22:23:19','',59,'https://guidoconstructioninc.com/?p=200',0,'revision','',0),
(201,1,'2021-08-30 22:26:32','2021-08-30 22:26:32','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_separator color=\"blue\" style=\"shadow\" border_width=\"2\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<h4>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h4>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"105\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"78\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630362201774-145ea54c-890e-8\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 22:26:32','2021-08-30 22:26:32','',59,'https://guidoconstructioninc.com/?p=201',0,'revision','',0),
(202,1,'2021-08-30 22:27:15','2021-08-30 22:27:15','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"105\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"78\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_separator color=\"blue\" style=\"shadow\" border_width=\"2\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<h4>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h4>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630362394928-1aae80a4-13cd-7\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 22:27:15','2021-08-30 22:27:15','',59,'https://guidoconstructioninc.com/?p=202',0,'revision','',0),
(203,1,'2021-08-30 22:27:52','2021-08-30 22:27:52','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"105\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"78\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_separator color=\"blue\" style=\"shadow\" border_width=\"2\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<h4>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h4>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630362438807-20a552f1-14e1-0\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 22:27:52','2021-08-30 22:27:52','',59,'https://guidoconstructioninc.com/?p=203',0,'revision','',0),
(204,1,'2021-08-30 22:28:43','2021-08-30 22:28:43','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"105\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"78\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_separator color=\"blue\" style=\"shadow\" border_width=\"2\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<h4>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h4>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630362475274-fc95ed65-fb0b-0\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 22:28:43','2021-08-30 22:28:43','',59,'https://guidoconstructioninc.com/?p=204',0,'revision','',0),
(205,1,'2021-08-30 22:29:25','2021-08-30 22:29:25','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"105\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"78\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_separator color=\"peacoc\" style=\"shadow\" border_width=\"2\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<h4>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h4>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630362526325-88dfa1ce-1131-10\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 22:29:25','2021-08-30 22:29:25','',59,'https://guidoconstructioninc.com/?p=205',0,'revision','',0),
(206,1,'2021-08-30 22:29:53','2021-08-30 22:29:53','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"105\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"78\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_separator style=\"shadow\" border_width=\"2\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<h4>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h4>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630362568685-3a38f399-0ca1-0\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 22:29:53','2021-08-30 22:29:53','',59,'https://guidoconstructioninc.com/?p=206',0,'revision','',0),
(207,1,'2021-08-30 22:30:43','2021-08-30 22:30:43','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"116\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"78\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_separator style=\"shadow\" border_width=\"2\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<h4>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h4>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630362596519-31be334e-59f1-3\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 22:30:43','2021-08-30 22:30:43','',59,'https://guidoconstructioninc.com/?p=207',0,'revision','',0),
(208,1,'2021-08-30 22:31:12','2021-08-30 22:31:12','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"116\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"78\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_separator style=\"shadow\" border_width=\"2\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h4>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h4>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630362647554-971b3e65-a98d-6\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 22:31:12','2021-08-30 22:31:12','',59,'https://guidoconstructioninc.com/?p=208',0,'revision','',0),
(209,1,'2021-08-30 22:32:01','2021-08-30 22:32:01','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"116\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"78\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_separator style=\"shadow\" border_width=\"2\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h4>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h4>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1630362699244-c2ddfb24-7f3e-8\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-08-30 22:32:01','2021-08-30 22:32:01','',59,'https://guidoconstructioninc.com/?p=209',0,'revision','',0),
(211,1,'2021-08-30 23:15:26','2021-08-30 23:15:26','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"80\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-30 23:15:26','2021-08-30 23:15:26','',60,'https://guidoconstructioninc.com/?p=211',0,'revision','',0),
(212,1,'2021-08-30 23:16:41','2021-08-30 23:16:41','[vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"80\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-30 23:16:41','2021-08-30 23:16:41','',60,'https://guidoconstructioninc.com/?p=212',0,'revision','',0),
(213,1,'2021-08-30 23:23:50','2021-08-30 23:23:50','[vc_row][vc_column][smartslider3 slider=\"3\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"80\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-30 23:23:50','2021-08-30 23:23:50','',60,'https://guidoconstructioninc.com/?p=213',0,'revision','',0),
(214,1,'2021-08-30 23:24:31','2021-08-30 23:24:31','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_single_image image=\"80\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-30 23:24:31','2021-08-30 23:24:31','',60,'https://guidoconstructioninc.com/?p=214',0,'revision','',0),
(215,1,'2021-08-30 23:46:08','2021-08-30 23:46:08','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"3\"][/vc_column][/vc_row][vc_row][vc_column width=\"2/3\"][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"32\" img_size=\"large\" css_animation=\"fadeInRight\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-30 23:46:08','2021-08-30 23:46:08','',60,'https://guidoconstructioninc.com/?p=215',0,'revision','',0),
(216,1,'2021-08-30 23:48:52','2021-08-30 23:48:52','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" css_animation=\"fadeInRight\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-30 23:48:52','2021-08-30 23:48:52','',60,'https://guidoconstructioninc.com/?p=216',0,'revision','',0),
(217,1,'2021-08-30 23:49:21','2021-08-30 23:49:21','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" css_animation=\"fadeInRight\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-30 23:49:21','2021-08-30 23:49:21','',60,'https://guidoconstructioninc.com/?p=217',0,'revision','',0),
(218,1,'2021-08-30 23:59:25','2021-08-30 23:59:25','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Person 1\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Person 2\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Person 3\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Person 4\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Person 5\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Person 6\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-30 23:59:25','2021-08-30 23:59:25','',60,'https://guidoconstructioninc.com/?p=218',0,'revision','',0),
(219,1,'2021-08-31 00:02:10','2021-08-31 00:02:10','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 1\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 2\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 3\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 4\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 5\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 6\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:02:10','2021-08-31 00:02:10','',60,'https://guidoconstructioninc.com/?p=219',0,'revision','',0),
(220,1,'2021-08-31 00:02:33','2021-08-31 00:02:33','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 1\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 2\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 3\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 4\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 5\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 6\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:02:33','2021-08-31 00:02:33','',60,'https://guidoconstructioninc.com/?p=220',0,'revision','',0),
(221,1,'2021-08-31 00:04:54','2021-08-31 00:04:54','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 1\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 2\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 3\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 4\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 5\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 6\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:04:54','2021-08-31 00:04:54','',60,'https://guidoconstructioninc.com/?p=221',0,'revision','',0),
(222,1,'2021-08-31 00:06:42','2021-08-31 00:06:42','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"medium\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 1\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 2\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 3\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 4\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 5\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 6\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:06:42','2021-08-31 00:06:42','',60,'https://guidoconstructioninc.com/?p=222',0,'revision','',0),
(223,1,'2021-08-31 00:07:18','2021-08-31 00:07:18','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 1\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 2\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 3\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 4\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 5\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 6\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:07:18','2021-08-31 00:07:18','',60,'https://guidoconstructioninc.com/?p=223',0,'revision','',0),
(224,1,'2021-08-31 00:08:33','2021-08-31 00:08:33','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 1\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 2\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 3\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 4\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 5\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 6\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:08:33','2021-08-31 00:08:33','',60,'https://guidoconstructioninc.com/?p=224',0,'revision','',0),
(225,1,'2021-08-31 00:08:52','2021-08-31 00:08:52','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 1\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 2\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 3\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 4\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 5\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 6\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:08:52','2021-08-31 00:08:52','',60,'https://guidoconstructioninc.com/?p=225',0,'revision','',0),
(226,1,'2021-08-31 00:09:38','2021-08-31 00:09:38','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 1\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 2\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 3\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 4\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 5\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text]\r\n<p style=\"text-align: center;\"><img class=\"alignnone size-full wp-image-176\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Hard-Hat-Construction-Icon.png\" alt=\"\" width=\"77\" height=\"41\" /></p>\r\n[/vc_column_text][vc_custom_heading text=\"Person 6\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_border_circle\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.[/vc_column_text][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:09:38','2021-08-31 00:09:38','',60,'https://guidoconstructioninc.com/?p=226',0,'revision','',0),
(227,1,'2021-08-31 00:29:35','2021-08-31 00:29:35','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:29:35','2021-08-31 00:29:35','',60,'https://guidoconstructioninc.com/?p=227',0,'revision','',0),
(228,1,'2021-08-31 00:35:52','2021-08-31 00:35:52','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:35:52','2021-08-31 00:35:52','',60,'https://guidoconstructioninc.com/?p=228',0,'revision','',0),
(229,1,'2021-08-31 00:36:40','2021-08-31 00:36:40','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:36:40','2021-08-31 00:36:40','',60,'https://guidoconstructioninc.com/?p=229',0,'revision','',0),
(230,1,'2021-08-31 00:46:16','2021-08-31 00:46:16','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInUp\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Dedicated Experience</li>\r\n 	<li>Prompt Timelines</li>\r\n 	<li>Solution Oriented</li>\r\n 	<li>Quality Products</li>\r\n 	<li>Honest Work</li>\r\n 	<li>Positive Working Environment</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:46:16','2021-08-31 00:46:16','',60,'https://guidoconstructioninc.com/?p=230',0,'revision','',0),
(231,1,'2021-08-31 00:46:42','2021-08-31 00:46:42','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInUp\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li>Dedicated Experience</li>\r\n 	<li>Prompt Timelines</li>\r\n 	<li>Solution Oriented</li>\r\n 	<li>Quality Products</li>\r\n 	<li>Honest Work</li>\r\n 	<li>Positive Working Environment</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:46:42','2021-08-31 00:46:42','',60,'https://guidoconstructioninc.com/?p=231',0,'revision','',0),
(232,1,'2021-08-31 00:48:04','2021-08-31 00:48:04','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInUp\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Dedicated Experience</li>\r\n 	<li style=\"text-align: left;\">Prompt Timelines</li>\r\n 	<li style=\"text-align: left;\">Solution Oriented</li>\r\n 	<li style=\"text-align: left;\">Quality Products</li>\r\n 	<li style=\"text-align: left;\">Honest Work</li>\r\n 	<li style=\"text-align: left;\">Positive Working Environment</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:48:04','2021-08-31 00:48:04','',60,'https://guidoconstructioninc.com/?p=232',0,'revision','',0),
(233,1,'2021-08-31 00:49:09','2021-08-31 00:49:09','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInUp\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Dedicated Experience</li>\r\n 	<li style=\"text-align: left;\">Prompt Timelines</li>\r\n 	<li style=\"text-align: left;\">Solution Oriented</li>\r\n 	<li style=\"text-align: left;\">Quality Products</li>\r\n 	<li style=\"text-align: left;\">Honest Work</li>\r\n 	<li style=\"text-align: left;\">Positive Working Environment</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:49:09','2021-08-31 00:49:09','',60,'https://guidoconstructioninc.com/?p=233',0,'revision','',0),
(234,1,'2021-08-31 00:50:40','2021-08-31 00:50:40','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInUp\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"medium\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Dedicated Experience</li>\r\n 	<li style=\"text-align: left;\">Prompt Timelines</li>\r\n 	<li style=\"text-align: left;\">Solution Oriented</li>\r\n 	<li style=\"text-align: left;\">Quality Products</li>\r\n 	<li style=\"text-align: left;\">Honest Work</li>\r\n 	<li style=\"text-align: left;\">Positive Working Environment</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:50:40','2021-08-31 00:50:40','',60,'https://guidoconstructioninc.com/?p=234',0,'revision','',0),
(235,1,'2021-08-31 00:52:26','2021-08-31 00:52:26','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Dedicated Experience</li>\r\n 	<li style=\"text-align: left;\">Prompt Timelines</li>\r\n 	<li style=\"text-align: left;\">Solution Oriented</li>\r\n 	<li style=\"text-align: left;\">Quality Products</li>\r\n 	<li style=\"text-align: left;\">Honest Work</li>\r\n 	<li style=\"text-align: left;\">Positive Working Environment</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:52:26','2021-08-31 00:52:26','',60,'https://guidoconstructioninc.com/?p=235',0,'revision','',0),
(236,1,'2021-08-31 00:53:02','2021-08-31 00:53:02','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h2>Dedicated Experience</h2>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h2>Prompt Timelines</h2>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h2>Solution Oriented</h2>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h2>Quality Products</h2>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h2>Honest Work</h2>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h2>Positive Working Environment</h2>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:53:02','2021-08-31 00:53:02','',60,'https://guidoconstructioninc.com/?p=236',0,'revision','',0),
(237,1,'2021-08-31 00:53:51','2021-08-31 00:53:51','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3>Dedicated Experience</h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3>Prompt Timelines</h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3>Solution Oriented</h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3>Quality Products</h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3>Honest Work</h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3>Positive Working Environment</h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:53:51','2021-08-31 00:53:51','',60,'https://guidoconstructioninc.com/?p=237',0,'revision','',0),
(238,1,'2021-08-31 00:54:19','2021-08-31 00:54:19','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h4>Dedicated Experience</h4>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h4>Prompt Timelines</h4>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h4>Solution Oriented</h4>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h4>Quality Products</h4>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h4>Honest Work</h4>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h4>Positive Working Environment</h4>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 00:54:19','2021-08-31 00:54:19','',60,'https://guidoconstructioninc.com/?p=238',0,'revision','',0),
(240,1,'2021-08-31 01:15:42','2021-08-31 01:15:42','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h5>Dedicated Experience</h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5>Prompt Timelines</h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5>Solution Oriented</h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5>Quality Products</h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5>Honest Work</h5>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h5>Positive Working Environment</h5>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 01:15:42','2021-08-31 01:15:42','',60,'https://guidoconstructioninc.com/?p=240',0,'revision','',0),
(241,1,'2021-08-31 01:16:10','2021-08-31 01:16:10','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h4><strong>Dedicated Experience</strong></h4>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h4><strong>Prompt Timelines</strong></h4>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h4><strong>Solution Oriented</strong></h4>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h4><strong>Quality Products</strong></h4>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h4><strong>Honest Work</strong></h4>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h4><strong>Positive Working Environment</strong></h4>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 01:16:10','2021-08-31 01:16:10','',60,'https://guidoconstructioninc.com/?p=241',0,'revision','',0),
(242,1,'2021-08-31 01:16:45','2021-08-31 01:16:45','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 01:16:45','2021-08-31 01:16:45','',60,'https://guidoconstructioninc.com/?p=242',0,'revision','',0),
(243,1,'2021-08-31 01:17:24','2021-08-31 01:17:24','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h4><strong><em>Prompt Timelines</em></strong></h4>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h4><strong><em>Solution Oriented</em></strong></h4>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h4><strong><em>Quality Products</em></strong></h4>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h4><strong><em>Honest Work</em></strong></h4>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h4><strong><em>Positive Working Environment</em></strong></h4>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 01:17:24','2021-08-31 01:17:24','',60,'https://guidoconstructioninc.com/?p=243',0,'revision','',0),
(244,1,'2021-08-31 01:22:23','2021-08-31 01:22:23','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3><em>Quality Products</em></h3>\r\n</li>\r\n 	<li>\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 01:22:23','2021-08-31 01:22:23','',60,'https://guidoconstructioninc.com/?p=244',0,'revision','',0),
(245,1,'2021-08-31 01:23:07','2021-08-31 01:23:07','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 01:23:07','2021-08-31 01:23:07','',60,'https://guidoconstructioninc.com/?p=245',0,'revision','',0),
(246,1,'2021-08-31 01:23:39','2021-08-31 01:23:39','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 01:23:39','2021-08-31 01:23:39','',60,'https://guidoconstructioninc.com/?p=246',0,'revision','',0),
(247,1,'2021-08-31 01:25:48','2021-08-31 01:25:48','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 01:25:48','2021-08-31 01:25:48','',60,'https://guidoconstructioninc.com/?p=247',0,'revision','',0),
(248,1,'2021-08-31 01:26:18','2021-08-31 01:26:18','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 01:26:18','2021-08-31 01:26:18','',60,'https://guidoconstructioninc.com/?p=248',0,'revision','',0),
(249,1,'2021-08-31 01:27:43','2021-08-31 01:27:43','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-08-31 01:27:43','2021-08-31 01:27:43','',60,'https://guidoconstructioninc.com/?p=249',0,'revision','',0),
(256,1,'2021-09-01 00:20:04','2021-09-01 00:20:04','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"125px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\r\nCCB#183146\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1630455512922-0c200a5e-a724-6\" include=\"50,51,32\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-09-01 00:20:04','2021-09-01 00:20:04','',41,'https://guidoconstructioninc.com/?p=256',0,'revision','',0),
(257,1,'2021-09-01 00:21:23','2021-09-01 00:21:23','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"125px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\r\nCCB#183146\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1630455607172-aa04f35b-f467-1\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-09-01 00:21:23','2021-09-01 00:21:23','',41,'https://guidoconstructioninc.com/?p=257',0,'revision','',0),
(258,1,'2021-09-02 23:34:02','2021-09-02 23:34:02','[vc_row][vc_column][vc_empty_space height=\"120px\" css=\".vc_custom_1630625641518{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630097788927{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" parallax_image=\"80\" css_animation=\"fadeInUp\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 2px 2px #ffffff;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630101076514{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-09-02 23:34:02','2021-09-02 23:34:02','',57,'https://guidoconstructioninc.com/?p=258',0,'revision','',0),
(259,1,'2021-09-02 23:34:33','2021-09-02 23:34:33','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\r\nCCB#183146\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1630625661722-d47889bd-5abe-6\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-09-02 23:34:33','2021-09-02 23:34:33','',41,'https://guidoconstructioninc.com/?p=259',0,'revision','',0),
(260,1,'2021-09-02 23:36:01','2021-09-02 23:36:01','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"45px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Foundations &amp; Footings</li>\r\n 	<li style=\"text-align: left;\">Structural Concrete</li>\r\n 	<li style=\"text-align: left;\">Decorative Colored Stamped Concrete</li>\r\n 	<li style=\"text-align: left;\">Commercial / Retail Concrete</li>\r\n 	<li style=\"text-align: left;\">Extruded Curb</li>\r\n 	<li style=\"text-align: left;\">Machined Curb &amp; Sidewalk</li>\r\n 	<li style=\"text-align: left;\">Architectural Stone</li>\r\n 	<li style=\"text-align: left;\">Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Asphalt Paving</li>\r\n 	<li style=\"text-align: left;\">Asphalt Repairs</li>\r\n 	<li style=\"text-align: left;\">Grading</li>\r\n 	<li style=\"text-align: left;\">Crack Sealing</li>\r\n 	<li style=\"text-align: left;\">Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630625745849-8e5b19c4-915d-6\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">We tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n[/vc_column_text][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1630625745851-edbe2dca-c251-10\" include=\"99,96,92,101\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Contact Us For Your\r\nFree Project Estimate\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-09-02 23:36:01','2021-09-02 23:36:01','',58,'https://guidoconstructioninc.com/?p=260',0,'revision','',0),
(263,1,'2021-09-03 22:40:47','2021-09-03 22:40:47','','ParkingLot_Concrete_Work_Oregon_Guido_Construction_Douglas_County','','inherit','open','closed','','parkinglot_concrete_work_oregon_guido_construction_douglas_county','','','2021-09-03 22:40:47','2021-09-03 22:40:47','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/09/ParkingLot_Concrete_Work_Oregon_Guido_Construction_Douglas_County.jpg',0,'attachment','image/jpeg',0),
(264,1,'2021-09-03 22:40:50','2021-09-03 22:40:50','','Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction','','inherit','open','closed','','roseburg-oregon-va-concrete-pour-aerial-photography-guido_construction-2','','','2021-09-03 22:40:50','2021-09-03 22:40:50','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/09/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg',0,'attachment','image/jpeg',0),
(265,1,'2021-09-03 22:40:53','2021-09-03 22:40:53','','S-Curve-at-stewart-parkway-concrete-sidewalks-pavement','','inherit','open','closed','','s-curve-at-stewart-parkway-concrete-sidewalks-pavement','','','2021-09-03 22:40:53','2021-09-03 22:40:53','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/09/S-Curve-at-stewart-parkway-concrete-sidewalks-pavement.jpg',0,'attachment','image/jpeg',0),
(266,1,'2021-09-03 22:40:55','2021-09-03 22:40:55','','S-Curve-at-stewart-parkway-concrete-sidewalks-pavement-drone-photo-Roseburg-Oregon','','inherit','open','closed','','s-curve-at-stewart-parkway-concrete-sidewalks-pavement-drone-photo-roseburg-oregon','','','2021-09-03 22:40:55','2021-09-03 22:40:55','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/09/S-Curve-at-stewart-parkway-concrete-sidewalks-pavement-drone-photo-Roseburg-Oregon.jpg',0,'attachment','image/jpeg',0),
(267,1,'2021-09-03 22:40:58','2021-09-03 22:40:58','','Sidewalks_Concrete_Pavement_Road_Guido_Construction_Roseburg_Oregon','','inherit','open','closed','','sidewalks_concrete_pavement_road_guido_construction_roseburg_oregon','','','2021-09-03 22:40:58','2021-09-03 22:40:58','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/09/Sidewalks_Concrete_Pavement_Road_Guido_Construction_Roseburg_Oregon.jpg',0,'attachment','image/jpeg',0),
(268,1,'2021-09-03 22:41:01','2021-09-03 22:41:01','','St.Joseph_Parking_Lot_Project_Concrete_Pavement_Guido_Construction_Roseburg_Oregon','','inherit','open','closed','','st-joseph_parking_lot_project_concrete_pavement_guido_construction_roseburg_oregon','','','2021-09-03 22:41:01','2021-09-03 22:41:01','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/09/St.Joseph_Parking_Lot_Project_Concrete_Pavement_Guido_Construction_Roseburg_Oregon.jpg',0,'attachment','image/jpeg',0),
(269,1,'2021-09-03 22:41:04','2021-09-03 22:41:04','','St.Joseph_Parking_Lot_Project_Guido_Construction_Roseburg_Oregon','','inherit','open','closed','','st-joseph_parking_lot_project_guido_construction_roseburg_oregon','','','2021-09-03 22:41:04','2021-09-03 22:41:04','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/09/St.Joseph_Parking_Lot_Project_Guido_Construction_Roseburg_Oregon.jpg',0,'attachment','image/jpeg',0),
(270,1,'2021-09-03 22:41:06','2021-09-03 22:41:06','','StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction','','inherit','open','closed','','stewartparkway_s_curve_pavement_sidewalks_project_roseburg_oregon_construction','','','2021-09-03 22:41:06','2021-09-03 22:41:06','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/09/StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction.jpg',0,'attachment','image/jpeg',0),
(271,1,'2021-09-03 22:41:09','2021-09-03 22:41:09','','StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction_Concrete','','inherit','open','closed','','stewartparkway_s_curve_pavement_sidewalks_project_roseburg_oregon_construction_concrete','','','2021-09-03 22:41:09','2021-09-03 22:41:09','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/09/StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction_Concrete.jpg',0,'attachment','image/jpeg',0),
(272,1,'2021-09-03 22:49:17','2021-09-03 22:49:17','[vc_row][vc_column][vc_empty_space height=\"120px\" css=\".vc_custom_1630625641518{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630097788927{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 2px 2px #ffffff;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630101076514{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-09-03 22:49:17','2021-09-03 22:49:17','',57,'https://guidoconstructioninc.com/?p=272',0,'revision','',0),
(273,1,'2021-09-03 22:51:02','2021-09-03 22:51:02','[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630709427284{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 2px 2px #ffffff;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630101076514{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-09-03 22:51:02','2021-09-03 22:51:02','',57,'https://guidoconstructioninc.com/?p=273',0,'revision','',0),
(274,1,'2021-09-03 22:51:18','2021-09-03 22:51:18','<p>[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.</p>\r\n<p>In 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.</p>\r\n<p>The company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n<p>[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]</p>\r\n<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]</p>\r\n<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<ul>\r\n<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]</p>\r\n','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-09-03 22:51:18','2021-09-03 22:51:18','',60,'https://guidoconstructioninc.com/?p=274',0,'revision','',0),
(275,1,'2021-09-03 22:55:12','2021-09-03 22:55:12','<p>[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630709427284{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 2px 2px #ffffff;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct<br />\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630709610747{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-09-03 22:55:12','2021-09-03 22:55:12','',57,'https://guidoconstructioninc.com/?p=275',0,'revision','',0),
(276,1,'2021-09-03 22:55:58','2021-09-03 22:55:58','<p>[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630709427284{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 2px 2px #ffffff;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct<br />\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-09-03 22:55:58','2021-09-03 22:55:58','',57,'https://guidoconstructioninc.com/?p=276',0,'revision','',0),
(277,1,'2021-09-03 23:03:59','2021-09-03 23:03:59','<p>[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][smartslider3 slider=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630709427284{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 2px 2px #ffffff;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct<br />\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-09-03 23:03:59','2021-09-03 23:03:59','',57,'https://guidoconstructioninc.com/?p=277',0,'revision','',0),
(278,1,'2021-09-03 23:06:39','2021-09-03 23:06:39','<p>[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630709427284{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 2px 2px #ffffff;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct<br />\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-09-03 23:06:39','2021-09-03 23:06:39','',57,'https://guidoconstructioninc.com/?p=278',0,'revision','',0),
(280,1,'2021-09-04 00:56:02','2021-09-04 00:56:02','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.<br />\r\nCCB#183146\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1630710564549-7a5bb12b-e60f-2\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Our Recent Projects\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Our Recent Projects\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Our Recent Projects\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-09-04 00:56:02','2021-09-04 00:56:02','',41,'https://guidoconstructioninc.com/?p=280',0,'revision','',0),
(281,1,'2021-09-04 00:57:11','2021-09-04 00:57:11','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.<br />\r\nCCB#183146\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1630716964614-072e61ff-d9db-5\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Our Recent Projects\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Our Recent Projects\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Our Recent Projects\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-09-04 00:57:11','2021-09-04 00:57:11','',41,'https://guidoconstructioninc.com/?p=281',0,'revision','',0),
(282,1,'2021-09-07 17:08:55','2021-09-07 17:08:55','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1631034118226-9c23dd08-98ed-3\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Our Recent Projects\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Our Recent Projects\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Our Recent Projects\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-09-07 17:08:55','2021-09-07 17:08:55','',41,'https://guidoconstructioninc.com/?p=282',0,'revision','',0),
(283,1,'2021-09-07 17:11:19','2021-09-07 17:11:19','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Our Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1631034564730-55f2134e-980d-6\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-09-07 17:11:19','2021-09-07 17:11:19','',41,'https://guidoconstructioninc.com/?p=283',0,'revision','',0),
(284,1,'2021-09-07 17:12:47','2021-09-07 17:12:47','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Our Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_empty_space height=\"15px\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1631034683126-58bccbf1-f87c-2\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-09-07 17:12:47','2021-09-07 17:12:47','',41,'https://guidoconstructioninc.com/?p=284',0,'revision','',0),
(285,1,'2021-09-07 17:16:25','2021-09-07 17:16:25','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1631034770965-86cfb390-6444-10\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Our Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_empty_space height=\"15px\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1631034853988-cb94bd03-f9e9-1\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-09-07 17:16:25','2021-09-07 17:16:25','',41,'https://guidoconstructioninc.com/?p=285',0,'revision','',0),
(286,1,'2021-09-07 17:17:52','2021-09-07 17:17:52','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1631034988957-b619974e-3144-5\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_empty_space height=\"15px\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1631034988963-50df1a9a-3018-4\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-09-07 17:17:52','2021-09-07 17:17:52','',41,'https://guidoconstructioninc.com/?p=286',0,'revision','',0),
(287,1,'2021-09-07 17:19:32','2021-09-07 17:19:32','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1631035075639-f51192e1-ba63-0\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_empty_space height=\"15px\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1631035075646-e0ee1c24-1d02-8\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-09-07 17:19:32','2021-09-07 17:19:32','',41,'https://guidoconstructioninc.com/?p=287',0,'revision','',0),
(288,1,'2021-09-07 17:20:34','2021-09-07 17:20:34','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1631035176026-510003e1-5f00-6\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_empty_space height=\"15px\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1631035176034-abbe96f8-7c52-5\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-09-07 17:20:34','2021-09-07 17:20:34','',41,'https://guidoconstructioninc.com/?p=288',0,'revision','',0),
(289,1,'2021-09-07 17:34:48','2021-09-07 17:34:48','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1631035238101-c40fd211-a5ad-8\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1631035238112-51113ece-cae5-3\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-09-07 17:34:48','2021-09-07 17:34:48','',41,'https://guidoconstructioninc.com/?p=289',0,'revision','',0),
(290,1,'2021-09-07 17:43:13','2021-09-07 17:43:13','<p>[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"116\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"78\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_separator style=\"shadow\" border_width=\"2\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<h4>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h4>\r\n<p>[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid gap=\"10\" grid_id=\"vc_gid:1631036488732-27d84014-e847-4\" include=\"268,263,269,267,266,265\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1631036426134-35d09e72-2be7-9\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH<br />\r\nOR ANYWHERE IN BETWEEN,<br />\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-09-07 17:43:13','2021-09-07 17:43:13','',59,'https://guidoconstructioninc.com/?p=290',0,'revision','',0),
(292,1,'2021-09-07 17:49:16','2021-09-07 17:49:16','<p>[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Guido Construction Services\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"45px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Pre-Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">Schematic Design</li>\r\n<li style=\"text-align: left;\">Budgeting</li>\r\n<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Construction Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">Foundations &amp; Footings</li>\r\n<li style=\"text-align: left;\">Structural Concrete</li>\r\n<li style=\"text-align: left;\">Decorative Colored Stamped Concrete</li>\r\n<li style=\"text-align: left;\">Commercial / Retail Concrete</li>\r\n<li style=\"text-align: left;\">Extruded Curb</li>\r\n<li style=\"text-align: left;\">Machined Curb &amp; Sidewalk</li>\r\n<li style=\"text-align: left;\">Architectural Stone</li>\r\n<li style=\"text-align: left;\">Large Retaining Walls</li>\r\n</ul>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_custom_heading text=\"Asphalt Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">Asphalt Paving</li>\r\n<li style=\"text-align: left;\">Asphalt Repairs</li>\r\n<li style=\"text-align: left;\">Grading</li>\r\n<li style=\"text-align: left;\">Crack Sealing</li>\r\n<li style=\"text-align: left;\">Seal Coating</li>\r\n</ul>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1631036869601-06988399-438e-10\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<p style=\"text-align: center;\">We tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n<p>[/vc_column_text][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1631036894665-3208e330-49b0-3\" include=\"270,263,267\"][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1631036869603-af65f6ce-0ba2-7\" include=\"99,96,92,101\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Contact Us For Your<br />\r\nFree Project Estimate\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','Services','','inherit','closed','closed','','58-revision-v1','','','2021-09-07 17:49:16','2021-09-07 17:49:16','',58,'https://guidoconstructioninc.com/?p=292',0,'revision','',0),
(293,1,'2021-09-07 17:53:45','2021-09-07 17:53:45','<p>[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Guido Construction Services<br />\r\nCCB#183146\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"45px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Pre-Construction<br />\r\nServices\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">Schematic Design</li>\r\n<li style=\"text-align: left;\">Budgeting</li>\r\n<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Construction<br />\r\nServices\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">Foundations &amp; Footings</li>\r\n<li style=\"text-align: left;\">Structural Concrete</li>\r\n<li style=\"text-align: left;\">Decorative Colored Stamped Concrete</li>\r\n<li style=\"text-align: left;\">Commercial / Retail Concrete</li>\r\n<li style=\"text-align: left;\">Extruded Curb</li>\r\n<li style=\"text-align: left;\">Machined Curb &amp; Sidewalk</li>\r\n<li style=\"text-align: left;\">Architectural Stone</li>\r\n<li style=\"text-align: left;\">Large Retaining Walls</li>\r\n</ul>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_custom_heading text=\"Asphalt<br />\r\nServices\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">Asphalt Paving</li>\r\n<li style=\"text-align: left;\">Asphalt Repairs</li>\r\n<li style=\"text-align: left;\">Grading</li>\r\n<li style=\"text-align: left;\">Crack Sealing</li>\r\n<li style=\"text-align: left;\">Seal Coating</li>\r\n</ul>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Quality Work At Competitive Rates\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1631036959939-92695c2e-b4f7-1\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Plan, Build &amp; Deliver\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<p style=\"text-align: center;\">We tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n<p>[/vc_column_text][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1631036959941-ba283c10-65fb-6\" include=\"270,263,267\"][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1631036959942-d23dc660-9877-2\" include=\"99,96,92,101\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Contact Us For Your<br />\r\nFree Project Estimate\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','Services','','inherit','closed','closed','','58-revision-v1','','','2021-09-07 17:53:45','2021-09-07 17:53:45','',58,'https://guidoconstructioninc.com/?p=293',0,'revision','',0),
(295,1,'2021-09-07 18:10:57','2021-09-07 18:10:57','<p>[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"20px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.</p>\r\n<p>In 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.</p>\r\n<p>The company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n<p>[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]</p>\r\n<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]</p>\r\n<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<ul>\r\n<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]</p>\r\n','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-09-07 18:10:57','2021-09-07 18:10:57','',60,'https://guidoconstructioninc.com/?p=295',0,'revision','',0),
(296,1,'2021-09-07 18:12:51','2021-09-07 18:12:51','<p>[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.</p>\r\n<p>In 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.</p>\r\n<p>The company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_empty_space height=\"20px\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n<p>[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]</p>\r\n<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]</p>\r\n<p>I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<ul>\r\n<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]</p>\r\n','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-09-07 18:12:51','2021-09-07 18:12:51','',60,'https://guidoconstructioninc.com/?p=296',0,'revision','',0),
(297,1,'2021-09-07 18:22:23','2021-09-07 18:22:23','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_empty_space height=\"20px\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"60px\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-09-07 18:22:23','2021-09-07 18:22:23','',60,'https://guidoconstructioninc.com/?p=297',0,'revision','',0),
(298,1,'2021-09-07 18:26:54','2021-09-07 18:26:54','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"104\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_empty_space height=\"20px\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"78\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"alignnone size-full wp-image-112 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/08/Guido-Construction-Secondary-Logo-Vertical.png\" alt=\"\" width=\"161\" height=\"224\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-09-07 18:26:54','2021-09-07 18:26:54','',60,'https://guidoconstructioninc.com/?p=298',0,'revision','',0),
(301,1,'2021-10-20 20:06:45','2021-10-20 20:06:45','','Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work','','inherit','open','closed','','bar-run-golf-course_photography_sidewalk_concrete_work','','','2021-10-20 20:06:45','2021-10-20 20:06:45','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work.jpg',0,'attachment','image/jpeg',0),
(302,1,'2021-10-20 20:06:48','2021-10-20 20:06:48','','Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcreteBridge','','inherit','open','closed','','bar-run-golf-course_photography_sidewalk_concrete_work_concretebridge','','','2021-10-20 20:06:48','2021-10-20 20:06:48','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcreteBridge.jpg',0,'attachment','image/jpeg',0),
(303,1,'2021-10-20 20:06:50','2021-10-20 20:06:50','','Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcretePaths_Near_Trees_And_River','','inherit','open','closed','','bar-run-golf-course_photography_sidewalk_concrete_work_concretepaths_near_trees_and_river','','','2021-10-20 20:06:50','2021-10-20 20:06:50','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcretePaths_Near_Trees_And_River.jpg',0,'attachment','image/jpeg',0),
(304,1,'2021-10-20 20:06:53','2021-10-20 20:06:53','','Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths','','inherit','open','closed','','bar-run-golf-course_photography_sidewalk_concrete_work_paths','','','2021-10-20 20:06:53','2021-10-20 20:06:53','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths.jpg',0,'attachment','image/jpeg',0),
(305,1,'2021-10-20 20:06:56','2021-10-20 20:06:56','','Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths_Blue_Skies','','inherit','open','closed','','bar-run-golf-course_photography_sidewalk_concrete_work_paths_blue_skies','','','2021-10-20 20:06:56','2021-10-20 20:06:56','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths_Blue_Skies.jpg',0,'attachment','image/jpeg',0),
(306,1,'2021-10-20 20:06:58','2021-10-20 20:06:58','','Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths_ConvergingPaths','','inherit','open','closed','','bar-run-golf-course_photography_sidewalk_concrete_work_paths_convergingpaths','','','2021-10-20 20:06:58','2021-10-20 20:06:58','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_Paths_ConvergingPaths.jpg',0,'attachment','image/jpeg',0),
(307,1,'2021-10-20 20:07:01','2021-10-20 20:07:01','','Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work-5','','inherit','open','closed','','bar-run-golf-course_photography_sidewalk_concrete_work-5','','','2021-10-20 20:07:01','2021-10-20 20:07:01','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work-5.jpg',0,'attachment','image/jpeg',0),
(308,1,'2021-10-20 20:07:03','2021-10-20 20:07:03','','Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite','','inherit','open','closed','','cascade_self_storage_facility_completed_concrete_work_jobsite','','','2021-10-20 20:07:03','2021-10-20 20:07:03','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite.jpg',0,'attachment','image/jpeg',0),
(309,1,'2021-10-20 20:07:07','2021-10-20 20:07:07','','Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite_DiamondLakeBLVD','','inherit','open','closed','','cascade_self_storage_facility_completed_concrete_work_jobsite_diamondlakeblvd','','','2021-10-20 20:07:07','2021-10-20 20:07:07','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite_DiamondLakeBLVD.jpg',0,'attachment','image/jpeg',0),
(310,1,'2021-10-20 20:07:10','2021-10-20 20:07:10','','Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite-_FinishedParkingLot','','inherit','open','closed','','cascade_self_storage_facility_completed_concrete_work_jobsite-_finishedparkinglot','','','2021-10-20 20:07:10','2021-10-20 20:07:10','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Cascade_Self_Storage_Facility_Completed_Concrete_Work_Jobsite-_FinishedParkingLot.jpg',0,'attachment','image/jpeg',0),
(311,1,'2021-10-20 20:07:12','2021-10-20 20:07:12','','Concrete_Builders_Supply_Facility','','inherit','open','closed','','concrete_builders_supply_facility','','','2021-10-20 20:07:12','2021-10-20 20:07:12','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Concrete_Builders_Supply_Facility.jpg',0,'attachment','image/jpeg',0),
(312,1,'2021-10-20 20:07:15','2021-10-20 20:07:15','','Concrete_Builders_Supply_Facility_Located_Off-HWY138','','inherit','open','closed','','concrete_builders_supply_facility_located_off-hwy138','','','2021-10-20 20:07:15','2021-10-20 20:07:15','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Concrete_Builders_Supply_Facility_Located_Off-HWY138.jpg',0,'attachment','image/jpeg',0),
(313,1,'2021-10-20 20:07:18','2021-10-20 20:07:18','','Concrete_Builders_Supply_Facility_Location','','inherit','open','closed','','concrete_builders_supply_facility_location','','','2021-10-20 20:07:18','2021-10-20 20:07:18','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Concrete_Builders_Supply_Facility_Location.jpg',0,'attachment','image/jpeg',0),
(314,1,'2021-10-20 20:07:21','2021-10-20 20:07:21','','Concrete_Builders_Supply_Facility_SideDoor_Location','','inherit','open','closed','','concrete_builders_supply_facility_sidedoor_location','','','2021-10-20 20:07:21','2021-10-20 20:07:21','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Concrete_Builders_Supply_Facility_SideDoor_Location.jpg',0,'attachment','image/jpeg',0),
(315,1,'2021-10-20 20:07:24','2021-10-20 20:07:24','','Concrete_Builders_Supply_Facility_TopDown_Location','','inherit','open','closed','','concrete_builders_supply_facility_topdown_location','','','2021-10-20 20:07:24','2021-10-20 20:07:24','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Concrete_Builders_Supply_Facility_TopDown_Location.jpg',0,'attachment','image/jpeg',0),
(316,1,'2021-10-20 20:07:26','2021-10-20 20:07:26','','Concrete_Builders_Supply_Facility_TopDown_Location_dronephoto','','inherit','open','closed','','concrete_builders_supply_facility_topdown_location_dronephoto','','','2021-10-20 20:07:26','2021-10-20 20:07:26','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Concrete_Builders_Supply_Facility_TopDown_Location_dronephoto.jpg',0,'attachment','image/jpeg',0),
(317,1,'2021-10-20 20:07:29','2021-10-20 20:07:29','','Concrete_Builders_Supply_Location','','inherit','open','closed','','concrete_builders_supply_location','','','2021-10-20 20:07:29','2021-10-20 20:07:29','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Concrete_Builders_Supply_Location.jpg',0,'attachment','image/jpeg',0),
(318,1,'2021-10-20 20:07:32','2021-10-20 20:07:32','','Guido_Construction_Blue_Dump_Truck','','inherit','open','closed','','guido_construction_blue_dump_truck','','','2021-10-20 20:07:32','2021-10-20 20:07:32','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido_Construction_Blue_Dump_Truck.jpg',0,'attachment','image/jpeg',0),
(319,1,'2021-10-20 20:07:35','2021-10-20 20:07:35','','Guido_Construction_Concrete_Bridge_work_Drone_photo','','inherit','open','closed','','guido_construction_concrete_bridge_work_drone_photo','','','2021-10-20 20:07:35','2021-10-20 20:07:35','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido_Construction_Concrete_Bridge_work_Drone_photo.jpg',0,'attachment','image/jpeg',0),
(320,1,'2021-10-20 20:07:37','2021-10-20 20:07:37','','Guido_Construction_concrete_pour_FillingConcretePump','','inherit','open','closed','','guido_construction_concrete_pour_fillingconcretepump','','','2021-10-20 20:07:37','2021-10-20 20:07:37','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido_Construction_concrete_pour_FillingConcretePump.jpg',0,'attachment','image/jpeg',0),
(321,1,'2021-10-20 20:07:40','2021-10-20 20:07:40','','Guido_Construction_concrete_USFS_jobsite_ConcreteFoundation','','inherit','open','closed','','guido_construction_concrete_usfs_jobsite_concretefoundation','','','2021-10-20 20:07:40','2021-10-20 20:07:40','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido_Construction_concrete_USFS_jobsite_ConcreteFoundation.jpg',0,'attachment','image/jpeg',0),
(322,1,'2021-10-20 20:07:43','2021-10-20 20:07:43','','Guido_Construction_Dump_Truck_Orange','','inherit','open','closed','','guido_construction_dump_truck_orange','','','2021-10-20 20:07:43','2021-10-20 20:07:43','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido_Construction_Dump_Truck_Orange.jpg',0,'attachment','image/jpeg',0),
(323,1,'2021-10-20 20:07:45','2021-10-20 20:07:45','','Guido_Construction_flatbed_Truck_blue','','inherit','open','closed','','guido_construction_flatbed_truck_blue','','','2021-10-20 20:07:45','2021-10-20 20:07:45','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido_Construction_flatbed_Truck_blue.jpg',0,'attachment','image/jpeg',0),
(324,1,'2021-10-20 20:07:48','2021-10-20 20:07:48','','Guido_Construction_flatbed_Truck_blue_worktruck','','inherit','open','closed','','guido_construction_flatbed_truck_blue_worktruck','','','2021-10-20 20:07:48','2021-10-20 20:07:48','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido_Construction_flatbed_Truck_blue_worktruck.jpg',0,'attachment','image/jpeg',0),
(325,1,'2021-10-20 20:07:50','2021-10-20 20:07:50','','Guido_Construction_rebar_USFS_ConcreteFoundationPour_ConcretePour','','inherit','open','closed','','guido_construction_rebar_usfs_concretefoundationpour_concretepour','','','2021-10-20 20:07:50','2021-10-20 20:07:50','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido_Construction_rebar_USFS_ConcreteFoundationPour_ConcretePour.jpg',0,'attachment','image/jpeg',0),
(326,1,'2021-10-20 20:07:53','2021-10-20 20:07:53','','Guido_Construction_rebar_USFS_jobsite','','inherit','open','closed','','guido_construction_rebar_usfs_jobsite','','','2021-10-20 20:07:53','2021-10-20 20:07:53','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido_Construction_rebar_USFS_jobsite.jpg',0,'attachment','image/jpeg',0),
(327,1,'2021-10-20 20:07:56','2021-10-20 20:07:56','','Guido_Construction_rebar_USFS_jobsite_ConcretePour','','inherit','open','closed','','guido_construction_rebar_usfs_jobsite_concretepour','','','2021-10-20 20:07:56','2021-10-20 20:07:56','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido_Construction_rebar_USFS_jobsite_ConcretePour.jpg',0,'attachment','image/jpeg',0),
(328,1,'2021-10-20 20:07:58','2021-10-20 20:07:58','','Guido_Construction_rebar_USFS_jobsite_men-working','','inherit','open','closed','','guido_construction_rebar_usfs_jobsite_men-working','','','2021-10-20 20:07:58','2021-10-20 20:07:58','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido_Construction_rebar_USFS_jobsite_men-working.jpg',0,'attachment','image/jpeg',0),
(329,1,'2021-10-20 20:08:02','2021-10-20 20:08:02','','Guido_Construction_rebar_USFS_jobsite_rebartie','','inherit','open','closed','','guido_construction_rebar_usfs_jobsite_rebartie','','','2021-10-20 20:08:02','2021-10-20 20:08:02','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido_Construction_rebar_USFS_jobsite_rebartie.jpg',0,'attachment','image/jpeg',0),
(330,1,'2021-10-20 20:08:05','2021-10-20 20:08:05','','Guido_Construction_rebar_USFS_jobsite-Men_In_hardhat','','inherit','open','closed','','guido_construction_rebar_usfs_jobsite-men_in_hardhat','','','2021-10-20 20:08:05','2021-10-20 20:08:05','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido_Construction_rebar_USFS_jobsite-Men_In_hardhat.jpg',0,'attachment','image/jpeg',0),
(331,1,'2021-10-20 21:47:36','2021-10-20 21:47:36','','GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido','','inherit','open','closed','','guidoconstruction_headshot_owners_darbyguido_dorenaguido','','','2021-10-20 21:57:21','2021-10-20 21:57:21','',60,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido.jpg',0,'attachment','image/jpeg',0),
(332,1,'2021-10-20 21:47:39','2021-10-20 21:47:39','','GuidoConstruction_Co-Owner_DorenaGuido-1','','inherit','open','closed','','guidoconstruction_co-owner_dorenaguido-1','','','2021-10-20 21:47:39','2021-10-20 21:47:39','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/GuidoConstruction_Co-Owner_DorenaGuido-1.jpg',0,'attachment','image/jpeg',0),
(333,1,'2021-10-20 21:47:42','2021-10-20 21:47:42','','GuidoConstruction_Owner_Headshot_DarbyGuido','','inherit','open','closed','','guidoconstruction_owner_headshot_darbyguido','','','2021-10-20 21:47:42','2021-10-20 21:47:42','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/GuidoConstruction_Owner_Headshot_DarbyGuido.jpg',0,'attachment','image/jpeg',0),
(334,1,'2021-10-20 21:48:42','2021-10-20 21:48:42','','White Verticle Guido Construction Icon','','inherit','open','closed','','white-verticle-guido-construction-icon','','','2021-10-20 21:48:42','2021-10-20 21:48:42','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/White-Verticle-Guido-Construction-Icon.png',0,'attachment','image/png',0),
(335,1,'2021-10-20 21:48:43','2021-10-20 21:48:43','','Guido Construction Icon','','inherit','open','closed','','guido-construction-icon','','','2021-10-20 21:48:43','2021-10-20 21:48:43','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido-Construction-Icon.png',0,'attachment','image/png',0),
(336,1,'2021-10-20 21:48:44','2021-10-20 21:48:44','','Horizontal Guido Construction Icon','','inherit','open','closed','','horizontal-guido-construction-icon','','','2021-10-20 21:48:44','2021-10-20 21:48:44','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Horizontal-Guido-Construction-Icon.png',0,'attachment','image/png',0),
(337,1,'2021-10-20 21:48:45','2021-10-20 21:48:45','','Vertical Guido Construction Icon','','inherit','open','closed','','vertical-guido-construction-icon','','','2021-10-20 21:50:39','2021-10-20 21:50:39','',60,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Vertical-Guido-Construction-Icon.png',0,'attachment','image/png',0),
(338,1,'2021-10-20 21:48:46','2021-10-20 21:48:46','','White Icon GC','','inherit','open','closed','','white-icon-gc','','','2021-10-20 21:48:46','2021-10-20 21:48:46','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/White-Icon-GC.png',0,'attachment','image/png',0),
(339,1,'2021-10-20 21:50:51','2021-10-20 21:50:51','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_single_image image=\"331\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_empty_space height=\"20px\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"78\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]<img class=\"size-medium wp-image-337 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/Vertical-Guido-Construction-Icon-289x300.png\" alt=\"\" width=\"289\" height=\"300\" />[/vc_column_text][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"104\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Group Photo</p>\r\n[/vc_column_text][vc_single_image image=\"93\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 21:50:51','2021-10-20 21:50:51','',60,'https://guidoconstructioninc.com/?p=339',0,'revision','',0),
(340,1,'2021-10-20 22:00:50','2021-10-20 22:00:50','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"32\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][vc_empty_space height=\"20px\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"size-medium wp-image-331 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 22:00:50','2021-10-20 22:00:50','',60,'https://guidoconstructioninc.com/?p=340',0,'revision','',0),
(341,1,'2021-10-20 22:01:07','2021-10-20 22:01:07','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_border\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"size-medium wp-image-331 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 22:01:07','2021-10-20 22:01:07','',60,'https://guidoconstructioninc.com/?p=341',0,'revision','',0),
(342,1,'2021-10-20 22:02:26','2021-10-20 22:02:26','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"size-medium wp-image-331 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 22:02:26','2021-10-20 22:02:26','',60,'https://guidoconstructioninc.com/?p=342',0,'revision','',0),
(343,1,'2021-10-20 22:17:51','2021-10-20 22:17:51','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"size-medium wp-image-331 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running a women owned business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hard working and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 22:17:51','2021-10-20 22:17:51','',60,'https://guidoconstructioninc.com/?p=343',0,'revision','',0),
(344,1,'2021-10-20 22:18:32','2021-10-20 22:18:32','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"size-medium wp-image-331 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running a women owned business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hard working and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 22:18:32','2021-10-20 22:18:32','',60,'https://guidoconstructioninc.com/?p=344',0,'revision','',0),
(345,1,'2021-10-20 22:19:30','2021-10-20 22:19:30','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"size-medium wp-image-331 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running a women owned business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hard working and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 22:19:30','2021-10-20 22:19:30','',60,'https://guidoconstructioninc.com/?p=345',0,'revision','',0),
(346,1,'2021-10-20 22:22:42','2021-10-20 22:22:42','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"size-medium wp-image-331 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hard working and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 22:22:42','2021-10-20 22:22:42','',60,'https://guidoconstructioninc.com/?p=346',0,'revision','',0),
(347,1,'2021-10-20 22:36:04','2021-10-20 22:36:04','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"size-medium wp-image-331 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hard working and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 22:36:04','2021-10-20 22:36:04','',60,'https://guidoconstructioninc.com/?p=347',0,'revision','',0),
(348,1,'2021-10-20 22:36:35','2021-10-20 22:36:35','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"size-medium wp-image-331 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hard working and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 22:36:35','2021-10-20 22:36:35','',60,'https://guidoconstructioninc.com/?p=348',0,'revision','',0),
(349,1,'2021-10-20 22:45:38','2021-10-20 22:45:38','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"size-medium wp-image-331 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 22:45:38','2021-10-20 22:45:38','',60,'https://guidoconstructioninc.com/?p=349',0,'revision','',0),
(350,1,'2021-10-20 23:26:50','2021-10-20 23:26:50','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][vc_masonry_media_grid grid_id=\"vc_gid:1634772313845-f49d3a85-de33-7\" include=\"271,302\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"size-medium wp-image-331 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 23:26:50','2021-10-20 23:26:50','',60,'https://guidoconstructioninc.com/?p=350',0,'revision','',0),
(351,1,'2021-10-20 23:27:43','2021-10-20 23:27:43','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][vc_masonry_media_grid initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1634772413092-2c916b43-43c6-5\" include=\"271,302\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"size-medium wp-image-331 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 23:27:43','2021-10-20 23:27:43','',60,'https://guidoconstructioninc.com/?p=351',0,'revision','',0),
(352,1,'2021-10-20 23:32:47','2021-10-20 23:32:47','','USFS_photography_Rebar_BuildingReinforcement_Structuralconcrete_Workers_Topdown','','inherit','open','closed','','usfs_photography_rebar_buildingreinforcement_structuralconcrete_workers_topdown','','','2021-10-20 23:32:47','2021-10-20 23:32:47','',60,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/USFS_photography_Rebar_BuildingReinforcement_Structuralconcrete_Workers_Topdown.jpg',0,'attachment','image/jpeg',0),
(353,1,'2021-10-20 23:32:50','2021-10-20 23:32:50','','USFS_photography_FoundationPouring_Concrete_Work','','inherit','open','closed','','usfs_photography_foundationpouring_concrete_work','','','2021-10-20 23:32:50','2021-10-20 23:32:50','',60,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/USFS_photography_FoundationPouring_Concrete_Work.jpg',0,'attachment','image/jpeg',0),
(354,1,'2021-10-20 23:32:52','2021-10-20 23:32:52','','USFS_photography_ConcreteFoundation_FoundationPour_Concrete_Work','','inherit','open','closed','','usfs_photography_concretefoundation_foundationpour_concrete_work','','','2021-10-20 23:32:52','2021-10-20 23:32:52','',60,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/USFS_photography_ConcreteFoundation_FoundationPour_Concrete_Work.jpg',0,'attachment','image/jpeg',0),
(355,1,'2021-10-20 23:32:54','2021-10-20 23:32:54','','USFS_photography_foundation_crew_smoothingConcrete_Concrete_Work','','inherit','open','closed','','usfs_photography_foundation_crew_smoothingconcrete_concrete_work','','','2021-10-20 23:32:54','2021-10-20 23:32:54','',60,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/USFS_photography_foundation_crew_smoothingConcrete_Concrete_Work.jpg',0,'attachment','image/jpeg',0),
(356,1,'2021-10-20 23:32:56','2021-10-20 23:32:56','','USFS_photography_TopDownJobsite_Foundation_StructuralPour_Concrete_Work','','inherit','open','closed','','usfs_photography_topdownjobsite_foundation_structuralpour_concrete_work','','','2021-10-20 23:32:56','2021-10-20 23:32:56','',60,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/USFS_photography_TopDownJobsite_Foundation_StructuralPour_Concrete_Work.jpg',0,'attachment','image/jpeg',0),
(357,1,'2021-10-20 23:32:58','2021-10-20 23:32:58','','USFS_photography_FoundationStructuralPour_Concrete_Work','','inherit','open','closed','','usfs_photography_foundationstructuralpour_concrete_work','','','2021-10-20 23:32:58','2021-10-20 23:32:58','',60,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/USFS_photography_FoundationStructuralPour_Concrete_Work.jpg',0,'attachment','image/jpeg',0),
(358,1,'2021-10-20 23:33:00','2021-10-20 23:33:00','','USFS_photography_WorkersPouringConcrete_Foundation_Concrete_Work-8','','inherit','open','closed','','usfs_photography_workerspouringconcrete_foundation_concrete_work-8','','','2021-10-20 23:33:00','2021-10-20 23:33:00','',60,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/USFS_photography_WorkersPouringConcrete_Foundation_Concrete_Work-8.jpg',0,'attachment','image/jpeg',0),
(359,1,'2021-10-20 23:33:03','2021-10-20 23:33:03','','USFS_photography_FoundationPour_Concrete_Work_foundation_ReinforcedStructure_StructuralPour','','inherit','open','closed','','usfs_photography_foundationpour_concrete_work_foundation_reinforcedstructure_structuralpour','','','2021-10-20 23:33:03','2021-10-20 23:33:03','',60,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/USFS_photography_FoundationPour_Concrete_Work_foundation_ReinforcedStructure_StructuralPour.jpg',0,'attachment','image/jpeg',0),
(360,1,'2021-10-20 23:33:05','2021-10-20 23:33:05','','USFS_photography_FoundationPour_Concrete_Work','','inherit','open','closed','','usfs_photography_foundationpour_concrete_work','','','2021-10-20 23:33:05','2021-10-20 23:33:05','',60,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/USFS_photography_FoundationPour_Concrete_Work.jpg',0,'attachment','image/jpeg',0),
(361,1,'2021-10-20 23:33:07','2021-10-20 23:33:07','','USFS_photography_ConcretePour_Foundation_-BasementPour_Work','','inherit','open','closed','','usfs_photography_concretepour_foundation_-basementpour_work','','','2021-10-20 23:33:07','2021-10-20 23:33:07','',60,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/USFS_photography_ConcretePour_Foundation_-BasementPour_Work.jpg',0,'attachment','image/jpeg',0),
(362,1,'2021-10-20 23:33:09','2021-10-20 23:33:09','','Guido_Construction_concrete_USFS_jobsite_ConcreteFoundation','','inherit','open','closed','','guido_construction_concrete_usfs_jobsite_concretefoundation-2','','','2021-10-20 23:33:09','2021-10-20 23:33:09','',60,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido_Construction_concrete_USFS_jobsite_ConcreteFoundation-1.jpg',0,'attachment','image/jpeg',0),
(363,1,'2021-10-20 23:33:11','2021-10-20 23:33:11','','Guido_Construction_concrete_pour_FillingConcretePump','','inherit','open','closed','','guido_construction_concrete_pour_fillingconcretepump-2','','','2021-10-20 23:33:11','2021-10-20 23:33:11','',60,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido_Construction_concrete_pour_FillingConcretePump-1.jpg',0,'attachment','image/jpeg',0),
(364,1,'2021-10-20 23:33:14','2021-10-20 23:33:14','','Guido_Construction_rebar_USFS_jobsite_ConcretePour','','inherit','open','closed','','guido_construction_rebar_usfs_jobsite_concretepour-2','','','2021-10-20 23:33:14','2021-10-20 23:33:14','',60,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido_Construction_rebar_USFS_jobsite_ConcretePour-1.jpg',0,'attachment','image/jpeg',0),
(365,1,'2021-10-20 23:33:16','2021-10-20 23:33:16','','Guido_Construction_rebar_USFS_ConcreteFoundationPour_ConcretePour','','inherit','open','closed','','guido_construction_rebar_usfs_concretefoundationpour_concretepour-2','','','2021-10-20 23:33:16','2021-10-20 23:33:16','',60,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Guido_Construction_rebar_USFS_ConcreteFoundationPour_ConcretePour-1.jpg',0,'attachment','image/jpeg',0),
(366,1,'2021-10-20 23:33:18','2021-10-20 23:33:18','','USFS_photography_building_Structure_Rebar_FoundationPour','','inherit','open','closed','','usfs_photography_building_structure_rebar_foundationpour','','','2021-10-20 23:33:18','2021-10-20 23:33:18','',60,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/USFS_photography_building_Structure_Rebar_FoundationPour.jpg',0,'attachment','image/jpeg',0),
(367,1,'2021-10-20 23:34:58','2021-10-20 23:34:58','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_column_text]<img class=\"size-medium wp-image-331 aligncenter\" src=\"https://guidoconstructioninc.com/wp-content/uploads/2021/10/GuidoConstruction_Headshot_Owners_DarbyGuido_DorenaGuido-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634772660477-a794f656-0a3b-10\" include=\"302,271,268,310,307,359\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 23:34:58','2021-10-20 23:34:58','',60,'https://guidoconstructioninc.com/?p=367',0,'revision','',0),
(368,1,'2021-10-20 23:35:55','2021-10-20 23:35:55','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][vc_gallery interval=\"3\" images=\"331\" img_size=\"medium\" onclick=\"\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634772900912-5b2b9b0d-56b6-3\" include=\"302,271,268,310,307,359\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 23:35:55','2021-10-20 23:35:55','',60,'https://guidoconstructioninc.com/?p=368',0,'revision','',0),
(369,1,'2021-10-20 23:37:15','2021-10-20 23:37:15','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_gallery interval=\"3\" images=\"331\" img_size=\"200x200\" onclick=\"\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634772957987-e2870ad2-89d6-7\" include=\"302,271,268,310,307,359\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 23:37:15','2021-10-20 23:37:15','',60,'https://guidoconstructioninc.com/?p=369',0,'revision','',0),
(370,1,'2021-10-20 23:38:31','2021-10-20 23:38:31','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634773038177-db4cb62b-1e67-4\" include=\"302,271,268,310,307,359\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 23:38:31','2021-10-20 23:38:31','',60,'https://guidoconstructioninc.com/?p=370',0,'revision','',0),
(371,1,'2021-10-20 23:39:10','2021-10-20 23:39:10','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634773114184-a1083e0d-59c4-2\" include=\"302,271,268,310,307,359\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"full\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 23:39:10','2021-10-20 23:39:10','',60,'https://guidoconstructioninc.com/?p=371',0,'revision','',0),
(372,1,'2021-10-20 23:40:09','2021-10-20 23:40:09','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634773153060-1b0d171e-17f0-9\" include=\"302,271,268,310,307,359\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"medium\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 23:40:09','2021-10-20 23:40:09','',60,'https://guidoconstructioninc.com/?p=372',0,'revision','',0),
(373,1,'2021-10-20 23:40:48','2021-10-20 23:40:48','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634773211871-3137956d-d582-8\" include=\"302,271,268,310,307,359\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-20 23:40:48','2021-10-20 23:40:48','',60,'https://guidoconstructioninc.com/?p=373',0,'revision','',0),
(374,1,'2021-10-20 23:46:12','2021-10-20 23:46:12','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"116\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_separator style=\"shadow\" border_width=\"2\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h4>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h4>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid gap=\"10\" grid_id=\"vc_gid:1634773547043-1b8802e5-fa10-9\" include=\"268,263,269,267,266,265\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634773547045-d116b232-c555-4\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-20 23:46:12','2021-10-20 23:46:12','',59,'https://guidoconstructioninc.com/?p=374',0,'revision','',0),
(375,1,'2021-10-20 23:54:41','2021-10-20 23:54:41','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_separator style=\"shadow\" border_width=\"2\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid gap=\"10\" grid_id=\"vc_gid:1634773574349-d0462359-7523-8\" include=\"268,263,269,267,266,265\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634773574350-3e472b6d-7420-2\" include=\"102,101,99,98,95,94,96,92,91,93\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-20 23:54:41','2021-10-20 23:54:41','',59,'https://guidoconstructioninc.com/?p=375',0,'revision','',0),
(376,1,'2021-10-20 23:58:13','2021-10-20 23:58:13','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid gap=\"10\" grid_id=\"vc_gid:1634774082826-29d2e765-8fec-4\" include=\"268,263,269,267,266,265\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634774082827-3e7904b9-b411-1\" include=\"102,101,99,98,95,94,96,92,91,93\"][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1634774173987-e35ad32e-b791-2\" include=\"358,329,360,361,365,364,352,353\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-20 23:58:13','2021-10-20 23:58:13','',59,'https://guidoconstructioninc.com/?p=376',0,'revision','',0),
(377,1,'2021-10-21 00:00:25','2021-10-21 00:00:25','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"101\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"92\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634774294993-2a77c1f0-b2aa-6\" include=\"268,263,269,267,266,265\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634774294994-8d59b957-2165-0\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1634774294995-84fca238-faf3-6\" include=\"358,329,360,361,365,364,352,353\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-21 00:00:25','2021-10-21 00:00:25','',59,'https://guidoconstructioninc.com/?p=377',0,'revision','',0),
(378,1,'2021-10-21 00:01:24','2021-10-21 00:01:24','','StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction','','inherit','open','closed','','stewartparkway_s_curve_pavement_sidewalks_project_roseburg_oregon_construction-2','','','2021-10-21 00:01:24','2021-10-21 00:01:24','',59,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/StewartParkway_S_Curve_Pavement_Sidewalks_project_Roseburg_Oregon_Construction.jpg',0,'attachment','image/jpeg',0),
(379,1,'2021-10-21 00:16:47','2021-10-21 00:16:47','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"322\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"330\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"358\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634774427617-3b7a9633-29b3-4\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634774427618-d0de8608-0b1f-8\" include=\"329,352,358,360,365,364\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634774427618-c0cb5cd7-cb6e-6\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1634774565022-b688fbde-34ed-3\" include=\"310,309,308,317\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634774607608-9621e132-c5f1-0\" include=\"301,302,304,305,306,307\"][vc_media_grid grid_id=\"vc_gid:1634774786758-39c7c346-e79b-5\" include=\"269,263,268\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-21 00:16:47','2021-10-21 00:16:47','',59,'https://guidoconstructioninc.com/?p=379',0,'revision','',0),
(380,1,'2021-10-21 00:17:29','2021-10-21 00:17:29','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"322\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"330\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"358\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634775409464-a38d9028-edf8-1\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634775409465-b91df98e-0564-0\" include=\"329,352,358,360,365,364\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634775409465-afc2e36f-3e22-4\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1634775409466-122147ed-4d1b-4\" include=\"310,309,308,317\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634775409467-5d327daf-2322-5\" include=\"301,302,304,305,306,307\"][vc_media_grid grid_id=\"vc_gid:1634775409467-af8b0a62-2e89-3\" include=\"269,263,268\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-21 00:17:29','2021-10-21 00:17:29','',59,'https://guidoconstructioninc.com/?p=380',0,'revision','',0),
(381,1,'2021-10-21 00:19:53','2021-10-21 00:19:53','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"322\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"330\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"358\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634775451907-34ac2eb0-8419-5\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634775451908-220175b4-3dac-2\" include=\"329,352,358,360,365,364\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634775451909-d01ac0b2-9700-4\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1634775451909-12b63e52-93dd-9\" include=\"310,309,308,317\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634775451910-c317d80e-9c19-2\" include=\"301,302,304,305,306,307\"][vc_media_grid grid_id=\"vc_gid:1634775451910-9044971c-0476-6\" include=\"269,263,268\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-21 00:19:53','2021-10-21 00:19:53','',59,'https://guidoconstructioninc.com/?p=381',0,'revision','',0),
(382,1,'2021-10-21 00:20:43','2021-10-21 00:20:43','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"322\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"330\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"358\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634775595848-2e577d8a-c614-9\" include=\"301,302,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634775595846-0ac952c8-f530-1\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634775595847-2c4ef9a4-ac76-5\" include=\"329,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1634775595849-6de84dbe-bddc-10\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634775595847-038e0f9d-cb0c-8\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1634775595848-711702b8-49e2-4\" include=\"310,309,308,317\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-21 00:20:43','2021-10-21 00:20:43','',59,'https://guidoconstructioninc.com/?p=382',0,'revision','',0),
(383,1,'2021-10-21 00:21:14','2021-10-21 00:21:14','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"322\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"330\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"358\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634775645436-c8b85807-438b-1\" include=\"301,302,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634775645437-301d312f-e69f-10\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634775645437-21ffed7f-350a-9\" include=\"329,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1634775645438-1e0fcaee-2b99-8\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634775645439-4f40e09d-2c0d-10\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1634775645440-e73528ce-78ab-7\" include=\"310,309,308\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-21 00:21:14','2021-10-21 00:21:14','',59,'https://guidoconstructioninc.com/?p=383',0,'revision','',0),
(384,1,'2021-10-21 00:22:43','2021-10-21 00:22:43','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"322\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"330\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"358\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][vc_empty_space height=\"150\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634775676965-3d552d83-ddaf-0\" include=\"301,302,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634775676967-3119981e-f949-1\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634775676968-93188ab4-be5e-0\" include=\"329,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1634775676969-c9ab1e82-01e1-9\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634775676969-a31255e6-f752-4\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1634775676969-427afda9-8ecc-8\" include=\"310,309,308\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-21 00:22:43','2021-10-21 00:22:43','',59,'https://guidoconstructioninc.com/?p=384',0,'revision','',0),
(385,1,'2021-10-21 00:23:47','2021-10-21 00:23:47','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"322\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"330\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"358\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634775765837-c48ecaed-ae64-0\" include=\"301,302,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634775765839-fc8dfd26-768e-1\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634775765839-65c1d56b-dae8-6\" include=\"329,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1634775765840-c4a4f44e-62db-6\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634775765841-2bd650d7-2fe8-3\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1634775765842-ad414f1f-4dac-7\" include=\"310,309,308\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-21 00:23:47','2021-10-21 00:23:47','',59,'https://guidoconstructioninc.com/?p=385',0,'revision','',0),
(386,1,'2021-10-21 00:25:06','2021-10-21 00:25:06','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"322\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"330\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"358\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634775829286-c27e4dbc-0738-8\" include=\"301,302,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634775829288-6a4aa73e-cc2c-3\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634775829288-3e902c08-0ac3-2\" include=\"329,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1634775829289-1726e736-8fc7-4\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634775829289-b240be4c-6656-1\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1634775829290-6d0b9f7a-8736-0\" include=\"310,309,308\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-21 00:25:06','2021-10-21 00:25:06','',59,'https://guidoconstructioninc.com/?p=386',0,'revision','',0),
(387,1,'2021-10-21 00:26:12','2021-10-21 00:26:12','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"322\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"330\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"358\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634775908295-c5385a4f-aede-2\" include=\"301,302,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634775908296-f49889ab-478a-9\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634775908297-993782d7-a9db-0\" include=\"329,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1634775908297-0f7e1bec-a453-2\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634775908298-c10973da-a562-4\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1634775908299-4c3c5b9f-f929-7\" include=\"310,309,308\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-21 00:26:12','2021-10-21 00:26:12','',59,'https://guidoconstructioninc.com/?p=387',0,'revision','',0),
(388,1,'2021-10-21 00:26:57','2021-10-21 00:26:57','[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][domik_owl_carousel items=\"3\" center=\"yes\" slidespeed=\"350\" autoplay=\"yes\"][domik_owl_carousel_item slideimg=\"322\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"93\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"330\"][/domik_owl_carousel_item][domik_owl_carousel_item slideimg=\"358\"][/domik_owl_carousel_item][/domik_owl_carousel][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634775974586-bf5c33d7-989b-2\" include=\"301,302,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634775974588-6350146c-5578-7\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634775974589-9deac6c2-c960-10\" include=\"329,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1634775974589-8e5fbb44-042f-2\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634775974590-ec865468-7b5c-10\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1634775974591-fe2515f9-cebe-7\" include=\"310,309,308\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-21 00:26:57','2021-10-21 00:26:57','',59,'https://guidoconstructioninc.com/?p=388',0,'revision','',0),
(389,1,'2021-10-21 00:35:18','2021-10-21 00:35:18','[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][lambert_parallax_section_title title_text=\"Contact Us Today\" subtitle_text=\"\" show_decor=\"no\" css=\".vc_custom_1630709427284{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][lambert_parallax_section_title title_text=\"Let\'s Start Building!\" subtitle_text=\"\" css=\".vc_custom_1630097772279{background-color: #141a3c !important;}\"][/lambert_parallax_section_title][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-10-21 00:35:18','2021-10-21 00:35:18','',57,'https://guidoconstructioninc.com/?p=389',0,'revision','',0),
(391,1,'2021-10-22 22:59:36','2021-10-22 22:59:36','','Roseburg-Oregon-Gudio_Construction-best-concrete-company','','inherit','open','closed','','roseburg-oregon-gudio_construction-best-concrete-company','','','2021-10-22 22:59:36','2021-10-22 22:59:36','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/10/Roseburg-Oregon-Gudio_Construction-best-concrete-company.jpg',0,'attachment','image/jpeg',0),
(393,1,'2021-10-22 23:03:09','2021-10-22 23:03:09','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" parallax=\"content-moving\" parallax_image=\"391\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"391\" img_size=\"medium\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634943591896-c6372b90-a0e5-7\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634943591902-d5cd841e-6436-8\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-10-22 23:03:09','2021-10-22 23:03:09','',41,'https://guidoconstructioninc.com/?p=393',0,'revision','',0),
(394,1,'2021-10-22 23:03:51','2021-10-22 23:03:51','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" parallax=\"content-moving\" parallax_image=\"391\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_single_image image=\"391\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634943791836-22f53202-10be-4\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634943791840-f7fe6397-a5ed-7\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-10-22 23:03:51','2021-10-22 23:03:51','',41,'https://guidoconstructioninc.com/?p=394',0,'revision','',0),
(395,1,'2021-10-22 23:06:11','2021-10-22 23:06:11','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" parallax=\"content-moving\" parallax_image=\"391\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"150px\"][vc_single_image image=\"334\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"150px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634943834144-94c46f26-f960-9\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634943834154-fb2ece8d-553e-10\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-10-22 23:06:11','2021-10-22 23:06:11','',41,'https://guidoconstructioninc.com/?p=395',0,'revision','',0),
(396,1,'2021-10-22 23:10:55','2021-10-22 23:10:55','<p>[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_custom_heading text=\"Contact Us\" font_container=\"tag:h1|text_align:center\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct<br />\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-10-22 23:10:55','2021-10-22 23:10:55','',57,'https://guidoconstructioninc.com/?p=396',0,'revision','',0),
(397,1,'2021-10-22 23:11:10','2021-10-22 23:11:10','<p>[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct<br />\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-10-22 23:11:10','2021-10-22 23:11:10','',57,'https://guidoconstructioninc.com/?p=397',0,'revision','',0),
(398,1,'2021-10-22 23:12:30','2021-10-22 23:12:30','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" parallax=\"content-moving\" parallax_image=\"391\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"150px\"][vc_single_image image=\"334\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"150px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634944326908-f3b53c6f-7d6d-8\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634944326914-e376f6bb-e1ef-0\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-10-22 23:12:30','2021-10-22 23:12:30','',41,'https://guidoconstructioninc.com/?p=398',0,'revision','',0),
(399,1,'2021-10-22 23:13:32','2021-10-22 23:13:32','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" parallax=\"content-moving\" parallax_image=\"391\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"150px\"][vc_single_image image=\"334\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"150px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634944353308-8214faa0-cc09-8\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634944353312-32190c59-68d3-2\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-10-22 23:13:32','2021-10-22 23:13:32','',41,'https://guidoconstructioninc.com/?p=399',0,'revision','',0),
(400,1,'2021-10-22 23:21:16','2021-10-22 23:21:16','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"391\" parallax_speed_bg=\"2\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"150px\"][vc_single_image image=\"334\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"150px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634944415029-f989c894-10bb-3\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634944415032-9fd5cf7f-f016-10\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-10-22 23:21:16','2021-10-22 23:21:16','',41,'https://guidoconstructioninc.com/?p=400',0,'revision','',0),
(401,1,'2021-10-22 23:21:45','2021-10-22 23:21:45','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"391\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"150px\"][vc_single_image image=\"334\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"150px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634944879262-518ce226-150a-5\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634944879267-3c690eeb-072f-6\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-10-22 23:21:45','2021-10-22 23:21:45','',41,'https://guidoconstructioninc.com/?p=401',0,'revision','',0);
INSERT INTO `wpwn_posts` VALUES
(402,1,'2021-10-22 23:41:30','2021-10-22 23:41:30','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_image=\"391\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"150px\"][vc_single_image image=\"334\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"150px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634944907670-f58fb2ef-a310-7\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634944907673-1ba87df6-671f-2\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-10-22 23:41:30','2021-10-22 23:41:30','',41,'https://guidoconstructioninc.com/?p=402',0,'revision','',0),
(403,1,'2021-10-22 23:43:24','2021-10-22 23:43:24','<p>[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.</p>\r\n<p>In 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.</p>\r\n<p>The company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634946186000-ca50d8f7-94f2-9\" include=\"302,271,268,310,307,359\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<ul>\r\n<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]</p>\r\n','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-22 23:43:24','2021-10-22 23:43:24','',60,'https://guidoconstructioninc.com/?p=403',0,'revision','',0),
(404,1,'2021-10-22 23:44:33','2021-10-22 23:44:33','<p>[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.</p>\r\n<p>In 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.</p>\r\n<p>The company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]</p>\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634946207242-70cb22dc-ffd6-8\" include=\"302,271,268,310,307,359\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"120px\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<ul>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"120px\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<ul>\r\n<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]</p>\r\n','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-10-22 23:44:33','2021-10-22 23:44:33','',60,'https://guidoconstructioninc.com/?p=404',0,'revision','',0),
(406,1,'2021-10-22 23:47:57','2021-10-22 23:47:57','<p>[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_images_carousel images=\"330,102,325,327,352\" img_size=\"full\" onclick=\"link_no\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634946359331-030236cb-45ec-8\" include=\"301,302,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634946359332-b2d81dc2-d540-1\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634946359333-c83127a5-3963-3\" include=\"329,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1634946359334-2e08eb5b-762f-8\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634946359335-6477477b-9334-9\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1634946359335-a0077348-8399-6\" include=\"310,309,308\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH<br />\r\nOR ANYWHERE IN BETWEEN,<br />\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-22 23:47:57','2021-10-22 23:47:57','',59,'https://guidoconstructioninc.com/?p=406',0,'revision','',0),
(407,1,'2021-10-22 23:50:49','2021-10-22 23:50:49','<p>[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_images_carousel images=\"330,322,301,352,310,326,269,327\" img_size=\"full\" onclick=\"link_no\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634946479840-b041cc28-0dc2-8\" include=\"301,302,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634946479841-8322fbc5-6859-7\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634946479841-090e2589-f829-5\" include=\"329,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1634946479841-613a2985-5f3f-4\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634946479843-26db2d6c-f20c-0\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1634946479843-0ea9828a-99ff-0\" include=\"310,309,308\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH<br />\r\nOR ANYWHERE IN BETWEEN,<br />\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-22 23:50:49','2021-10-22 23:50:49','',59,'https://guidoconstructioninc.com/?p=407',0,'revision','',0),
(408,1,'2021-10-22 23:51:19','2021-10-22 23:51:19','<p>[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327\" img_size=\"full\" onclick=\"link_no\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634946652220-01c71372-cba6-2\" include=\"301,302,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634946652221-f130d4f9-5695-3\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634946652222-9ed86779-175d-8\" include=\"329,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1634946652223-863d8ea5-9387-5\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634946652224-6a2d1d84-35db-6\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1634946652225-578933a6-9999-4\" include=\"310,309,308\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH<br />\r\nOR ANYWHERE IN BETWEEN,<br />\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-22 23:51:19','2021-10-22 23:51:19','',59,'https://guidoconstructioninc.com/?p=408',0,'revision','',0),
(409,1,'2021-10-23 00:00:11','2021-10-23 00:00:11','<p>[vc_row css=\".vc_custom_1630358366404{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327\" img_size=\"full\" onclick=\"link_no\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634946736275-75415cb7-58df-3\" include=\"301,302,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634946736275-a1c46a3f-1162-8\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634946736276-6fe266d6-b03f-1\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1634946736276-e13eab28-0ced-5\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634946736276-5727ad7c-6371-4\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1634946736277-f732a349-9134-3\" include=\"310,309,308\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH<br />\r\nOR ANYWHERE IN BETWEEN,<br />\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-23 00:00:11','2021-10-23 00:00:11','',59,'https://guidoconstructioninc.com/?p=409',0,'revision','',0),
(410,1,'2021-10-23 00:04:00','2021-10-23 00:04:00','<p>[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327\" img_size=\"full\" onclick=\"link_no\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]</p>\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634947214133-6a41d9c2-772c-2\" include=\"301,302,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634947214133-5db420fd-b325-1\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1634947214134-93478304-b3f4-0\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1634947214134-fbe86c83-4651-9\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1634947214134-e8af287a-effe-0\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1634947214136-85939113-7c56-10\" include=\"310,309,308\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH<br />\r\nOR ANYWHERE IN BETWEEN,<br />\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-10-23 00:04:00','2021-10-23 00:04:00','',59,'https://guidoconstructioninc.com/?p=410',0,'revision','',0),
(411,1,'2021-10-23 00:21:06','2021-10-23 00:21:06','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"150px\"][vc_single_image image=\"334\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"150px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634948295895-a94cb076-bb81-0\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634948295904-afd12213-5d05-2\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-10-23 00:21:06','2021-10-23 00:21:06','',41,'https://guidoconstructioninc.com/?p=411',0,'revision','',0),
(412,1,'2021-10-23 00:21:31','2021-10-23 00:21:31','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"150px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"150px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634948468987-a61c4183-c33c-7\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634948468990-847e7605-52d3-3\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-10-23 00:21:31','2021-10-23 00:21:31','',41,'https://guidoconstructioninc.com/?p=412',0,'revision','',0),
(413,1,'2021-10-23 00:21:54','2021-10-23 00:21:54','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"150px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"150px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634948494203-5bcc1b8e-3af9-5\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634948494207-217c3d99-21eb-8\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-10-23 00:21:54','2021-10-23 00:21:54','',41,'https://guidoconstructioninc.com/?p=413',0,'revision','',0),
(414,1,'2021-10-23 00:22:22','2021-10-23 00:22:22','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634948517069-9a02decb-b5b4-10\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634948517073-d5a2ac69-378f-1\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-10-23 00:22:22','2021-10-23 00:22:22','',41,'https://guidoconstructioninc.com/?p=414',0,'revision','',0),
(415,1,'2021-10-23 00:22:49','2021-10-23 00:22:49','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634948544643-9f672463-afae-4\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1634948544646-3e7baf3e-3f92-9\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-10-23 00:22:49','2021-10-23 00:22:49','',41,'https://guidoconstructioninc.com/?p=415',0,'revision','',0),
(423,1,'2021-11-02 20:51:44','2021-11-02 20:51:44','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1635885966547-910f5fa0-5e19-7\" include=\"302,271,268,310,307,359\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"120px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"120px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-11-02 20:51:44','2021-11-02 20:51:44','',60,'https://guidoconstructioninc.com/?p=423',0,'revision','',0),
(424,1,'2021-11-02 20:52:07','2021-11-02 20:52:07','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1635886308328-3b5fa753-bf1e-0\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1635886308332-416cf6fe-eb9c-7\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-02 20:52:07','2021-11-02 20:52:07','',41,'https://guidoconstructioninc.com/?p=424',0,'revision','',0),
(425,1,'2021-11-02 20:54:44','2021-11-02 20:54:44','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1635886327750-3ab7ba82-5502-1\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text]\r\n<p style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1635886327755-826bc9b3-4be9-3\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-02 20:54:44','2021-11-02 20:54:44','',41,'https://guidoconstructioninc.com/?p=425',0,'revision','',0),
(426,1,'2021-11-02 20:55:24','2021-11-02 20:55:24','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1635886484237-ad6a0dbd-713d-0\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text]\r\n<h4 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h4>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1635886484243-67729f4c-5afb-9\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-02 20:55:24','2021-11-02 20:55:24','',41,'https://guidoconstructioninc.com/?p=426',0,'revision','',0),
(427,1,'2021-11-02 20:56:32','2021-11-02 20:56:32','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Welcome To\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"CCB#183146\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1635886525045-8e451645-160e-5\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Recent Projects\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"Services\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"About Us\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1635886525048-5fca286b-73e2-6\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-02 20:56:32','2021-11-02 20:56:32','',41,'https://guidoconstructioninc.com/?p=427',0,'revision','',0),
(428,1,'2021-11-02 21:18:31','2021-11-02 21:18:31','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1635887357079-6bfede22-757e-8\" include=\"302,271,268,310,307,359\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"120px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"120px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-11-02 21:18:31','2021-11-02 21:18:31','',60,'https://guidoconstructioninc.com/?p=428',0,'revision','',0),
(429,1,'2021-11-02 21:20:36','2021-11-02 21:20:36','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327\" img_size=\"full\" onclick=\"link_no\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/xCCtd0rxNJU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1635887918454-a404da34-420b-5\" include=\"301,302,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1635887918455-754d1454-8619-6\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1635887918455-9b345ef1-5827-8\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1635887918456-54bea2f9-3039-0\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1635887918457-e642c2d6-7304-5\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1635887918460-2d532c4e-ad54-6\" include=\"310,309,308\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-11-02 21:20:36','2021-11-02 21:20:36','',59,'https://guidoconstructioninc.com/?p=429',0,'revision','',0),
(431,1,'2021-11-10 18:48:52','2021-11-10 18:48:52','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1636570107855-0713119e-5e11-4\" include=\"302,271,268,310,307,359\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"40px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"40px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-11-10 18:48:52','2021-11-10 18:48:52','',60,'https://guidoconstructioninc.com/?p=431',0,'revision','',0),
(432,1,'2021-11-10 19:25:15','2021-11-10 19:25:15','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg. His parents, Frank and Nina Guido, owned a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cratar with a friend and mentor, Mel Gregory. For the next 15 years, operating Cratar helped Darby hone his management experience with concrete. By 2000, Cratar became Darby Guido Construction to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the growing family nature of the business. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1636570136100-bac68b74-a8b8-1\" include=\"302,271,268,310,307,359\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-11-10 19:25:15','2021-11-10 19:25:15','',60,'https://guidoconstructioninc.com/?p=432',0,'revision','',0),
(433,1,'2021-11-10 19:25:41','2021-11-10 19:25:41','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327\" img_size=\"full\" onclick=\"link_no\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3>Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1636572325010-8bfaeb20-a293-4\" include=\"301,302,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1636572325011-311be75a-e130-7\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1636572325013-5ed8892d-2d04-8\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1636572325013-04797b29-a5a1-10\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1636572325014-c2a75cbf-defc-9\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1636572325015-55373686-29a8-6\" include=\"310,309,308\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-11-10 19:25:41','2021-11-10 19:25:41','',59,'https://guidoconstructioninc.com/?p=433',0,'revision','',0),
(434,1,'2021-11-10 19:33:15','2021-11-10 19:33:15','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327\" img_size=\"650x432\" onclick=\"link_no\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/3\"][vc_empty_space height=\"60px\"][vc_empty_space height=\"60px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3 style=\"text-align: left;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1636572344143-f4a4c8b7-74d6-8\" include=\"301,302,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1636572344143-4f15d3f1-291c-6\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1636572344145-11925a2d-0409-5\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1636572344146-f996f0e0-6ad8-2\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1636572344146-689bf9d9-1087-9\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1636572344147-2affed70-a0dd-5\" include=\"310,309,308\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-11-10 19:33:15','2021-11-10 19:33:15','',59,'https://guidoconstructioninc.com/?p=434',0,'revision','',0),
(435,1,'2021-11-10 19:33:45','2021-11-10 19:33:45','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327\" img_size=\"650x432\" onclick=\"link_no\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3 style=\"text-align: left;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1636572798909-d49e9b07-4403-10\" include=\"301,302,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1636572798910-3fce2f93-1d51-1\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1636572798911-58bd479e-8df8-7\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1636572798912-466efc99-e2ed-4\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1636572798912-f50db6f8-a6e9-6\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1636572798914-1c0fc4b1-22ac-4\" include=\"310,309,308\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-11-10 19:33:45','2021-11-10 19:33:45','',59,'https://guidoconstructioninc.com/?p=435',0,'revision','',0),
(436,1,'2021-11-10 19:35:34','2021-11-10 19:35:34','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327\" img_size=\"650x432\" onclick=\"link_no\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3 style=\"text-align: left;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"Recent Project Gallery\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1636572828820-d14135da-3de8-2\" include=\"301,302,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1636572828821-dc43fd6c-7305-6\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1636572828821-e552a5a0-7f69-3\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1636572828822-e7f411e9-60da-10\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1636572828823-9387b2e7-85d8-5\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1636572828823-bb0bee69-6106-5\" include=\"310,309,308\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-11-10 19:35:34','2021-11-10 19:35:34','',59,'https://guidoconstructioninc.com/?p=436',0,'revision','',0),
(439,1,'2021-11-11 01:19:10','2021-11-11 01:19:10','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"Guido Construction, Inc.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1636593456040-0c2ad280-4061-2\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1636593456045-cd2dd643-2208-8\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-11 01:19:10','2021-11-11 01:19:10','',41,'https://guidoconstructioninc.com/?p=439',0,'revision','',0),
(440,1,'2021-11-11 01:20:16','2021-11-11 01:20:16','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1636593551700-979dc9bc-8508-6\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1636593551704-b5b37fa9-d2c8-2\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-11 01:20:16','2021-11-11 01:20:16','',41,'https://guidoconstructioninc.com/?p=440',0,'revision','',0),
(441,1,'2021-11-11 01:23:56','2021-11-11 01:23:56','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION SERVICES\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"45px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"PRE-CONSTRUCTION\r\nSERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"CONSTRUCTION\r\nSERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Foundations &amp; Footings</li>\r\n 	<li style=\"text-align: left;\">Structural Concrete</li>\r\n 	<li style=\"text-align: left;\">Decorative Colored Stamped Concrete</li>\r\n 	<li style=\"text-align: left;\">Commercial / Retail Concrete</li>\r\n 	<li style=\"text-align: left;\">Extruded Curb</li>\r\n 	<li style=\"text-align: left;\">Machined Curb &amp; Sidewalk</li>\r\n 	<li style=\"text-align: left;\">Architectural Stone</li>\r\n 	<li style=\"text-align: left;\">Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_custom_heading text=\"ASPHALT\r\nSERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Asphalt Paving</li>\r\n 	<li style=\"text-align: left;\">Asphalt Repairs</li>\r\n 	<li style=\"text-align: left;\">Grading</li>\r\n 	<li style=\"text-align: left;\">Crack Sealing</li>\r\n 	<li style=\"text-align: left;\">Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"QUALITY WORK AT COMPETITIVE RATES\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1636593647677-c592d6b3-4310-1\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"PLAN, BUILD &amp; DELIVER\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">We tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n[/vc_column_text][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1636593647678-965ac1dc-2bc9-7\" include=\"270,263,267\"][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1636593647679-22171a3e-0f8e-7\" include=\"99,96,92,101\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"CONTACT US FOR YOUR\r\nFREE PROJECT ESTIMATE\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-11-11 01:23:56','2021-11-11 01:23:56','',58,'https://guidoconstructioninc.com/?p=441',0,'revision','',0),
(443,1,'2021-11-11 01:25:17','2021-11-11 01:25:17','','Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcretePaths_Near_Trees_And_River','','inherit','open','closed','','bar-run-golf-course_photography_sidewalk_concrete_work_concretepaths_near_trees_and_river-2','','','2021-11-11 01:25:17','2021-11-11 01:25:17','',59,'https://guidoconstructioninc.com/wp-content/uploads/2021/11/Bar-Run-Golf-Course_photography_sidewalk_Concrete_Work_ConcretePaths_Near_Trees_And_River.jpg',0,'attachment','image/jpeg',0),
(444,1,'2021-11-11 01:25:52','2021-11-11 01:25:52','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327\" img_size=\"650x432\" onclick=\"link_no\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3 style=\"text-align: left;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1636593859325-95c55518-ae09-0\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1636593859326-844541e0-4015-10\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1636593859327-da564d26-c07c-7\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1636593859327-3df157a2-87dc-1\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1636593859328-87d1a2ed-d44f-3\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1636593859329-cdc60d91-c26f-7\" include=\"310,309,308\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-11-11 01:25:52','2021-11-11 01:25:52','',59,'https://guidoconstructioninc.com/?p=444',0,'revision','',0),
(445,1,'2021-11-11 01:27:03','2021-11-11 01:27:03','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION SERVICES\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"45px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"PRE-CONSTRUCTION\r\nSERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"CONSTRUCTION\r\nSERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Foundations &amp; Footings</li>\r\n 	<li style=\"text-align: left;\">Structural Concrete</li>\r\n 	<li style=\"text-align: left;\">Decorative Colored Stamped Concrete</li>\r\n 	<li style=\"text-align: left;\">Commercial / Retail Concrete</li>\r\n 	<li style=\"text-align: left;\">Extruded Curb</li>\r\n 	<li style=\"text-align: left;\">Machined Curb &amp; Sidewalk</li>\r\n 	<li style=\"text-align: left;\">Architectural Stone</li>\r\n 	<li style=\"text-align: left;\">Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_custom_heading text=\"ASPHALT\r\nSERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Asphalt Paving</li>\r\n 	<li style=\"text-align: left;\">Asphalt Repairs</li>\r\n 	<li style=\"text-align: left;\">Grading</li>\r\n 	<li style=\"text-align: left;\">Crack Sealing</li>\r\n 	<li style=\"text-align: left;\">Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"QUALITY WORK AT COMPETITIVE RATES\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1636593996231-882c6362-b0e1-0\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"PLAN, BUILD &amp; DELIVER\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">We have tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n[/vc_column_text][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1636593996233-f62c8e9e-0dd9-9\" include=\"270,263,267\"][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1636593996233-805c0c3b-122c-2\" include=\"99,96,92,101\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"CONTACT US FOR YOUR\r\nFREE PROJECT ESTIMATE\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-11-11 01:27:03','2021-11-11 01:27:03','',58,'https://guidoconstructioninc.com/?p=445',0,'revision','',0),
(447,1,'2021-11-11 01:28:24','2021-11-11 01:28:24','[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-11-11 01:28:24','2021-11-11 01:28:24','',57,'https://guidoconstructioninc.com/?p=447',0,'revision','',0),
(448,1,'2021-11-11 01:31:55','2021-11-11 01:31:55','[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"GUIDO CONSTRUCTION\r\nCCB# 183146\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-11-11 01:31:55','2021-11-11 01:31:55','',57,'https://guidoconstructioninc.com/?p=448',0,'revision','',0),
(449,1,'2021-11-11 01:32:38','2021-11-11 01:32:38','[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">For additional information please contact us by email and one of our estimators will contact you.</h3>\r\n[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"GUIDO CONSTRUCTION\r\nCCB# 183146\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-11-11 01:32:38','2021-11-11 01:32:38','',57,'https://guidoconstructioninc.com/?p=449',0,'revision','',0),
(450,1,'2021-11-11 01:34:55','2021-11-11 01:34:55','[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n&nbsp;\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">FOR ADDITIONAL INFORMATION</h3>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">PLEASE CONTACT US BY EMAIL AND ONE OF OUR ESTIMATORS WILL CONTACT YOU.</h3>\r\n[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"GUIDO CONSTRUCTION\r\nCCB# 183146\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-11-11 01:34:55','2021-11-11 01:34:55','',57,'https://guidoconstructioninc.com/?p=450',0,'revision','',0),
(451,1,'2021-11-11 02:29:00','2021-11-11 02:29:00','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg and has over 37 years of concrete experience. His grandparents, Frank and Nina Guido, started a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cradar Enterprises with his father, Steve Guido, and mentor, Mel Gregory. For the next 15 years, operating Cradar helped Darby hone his management experience with concrete. By 2000, Cradar Enterprises became Darby Guido Construction, a sole proprietorship, to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the business growth with legacy. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1636597345669-4d27226d-3b75-10\" include=\"302,271,268,310,307,359\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-11-11 02:29:00','2021-11-11 02:29:00','',60,'https://guidoconstructioninc.com/?p=451',0,'revision','',0),
(452,1,'2021-11-11 02:33:43','2021-11-11 02:33:43','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg and has over 37 years of concrete experience. His grandparents, Frank and Nina Guido, started a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cradar Enterprises with his father, Steve Guido, and mentor, Mel Gregory. For the next 15 years, operating Cradar helped Darby hone his management experience with concrete. By 2000, Cradar Enterprises became Darby Guido Construction, a sole proprietorship, to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the business growth with legacy. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. Dorena values her heritage and is an active member of the Citizen Band of the Potawatomi Tribe. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business, and taking after his forefathers, construction and concrete are a passion for Darby. In addition to being President for Guido Construction and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1636597742092-2016a1d3-bac3-0\" include=\"302,271,268,310,307,359\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-11-11 02:33:43','2021-11-11 02:33:43','',60,'https://guidoconstructioninc.com/?p=452',0,'revision','',0),
(453,1,'2021-11-11 02:36:05','2021-11-11 02:36:05','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg and has over 37 years of concrete experience. His grandparents, Frank and Nina Guido, started a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cradar Enterprises with his father, Steve Guido, and mentor, Mel Gregory. For the next 15 years, operating Cradar helped Darby hone his management experience with concrete. By 2000, Cradar Enterprises became Darby Guido Construction, a sole proprietorship, to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the business growth with legacy. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack here at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. Dorena values her heritage and is an active member of the Citizen Band of the Potawatomi Tribe. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking time-honored secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business and taking after his forefathers, construction and concrete are a passion and a way of life for Darby. In addition to being the Operations Manager for Guido Construction Inc. and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, time on his jet ski, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1636598024220-1a254c03-c9f8-4\" include=\"302,271,268,310,307,359\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-11-11 02:36:05','2021-11-11 02:36:05','',60,'https://guidoconstructioninc.com/?p=453',0,'revision','',0),
(454,1,'2021-11-11 02:37:16','2021-11-11 02:37:16','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg and has over 37 years of concrete experience. His grandparents, Frank and Nina Guido, started a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cradar Enterprises with his father, Steve Guido, and mentor, Mel Gregory. For the next 15 years, operating Cradar helped Darby hone his management experience with concrete. By 2000, Cradar Enterprises became Darby Guido Construction, a sole proprietorship, to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the business growth with legacy. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. Dorena values her heritage and is an active member of the Citizen Band of the Potawatomi Tribe. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking her secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business and taking after his forefathers, construction and concrete are a passion and a way of life for Darby. In addition to being the Operations Manager for Guido Construction Inc. and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, time on his jet ski, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1636598166635-b207bdb1-89e4-9\" include=\"302,271,268,310,307,359\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-11-11 02:37:16','2021-11-11 02:37:16','',60,'https://guidoconstructioninc.com/?p=454',0,'revision','',0),
(455,1,'2021-11-11 16:37:30','2021-11-11 16:37:30','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg and has over 37 years of concrete experience. His grandparents, Frank and Nina Guido, started a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cradar Enterprises with his father, Steve Guido, and mentor, Mel Gregory. For the next 15 years, operating Cradar helped Darby hone his management experience with concrete. By 2000, Cradar Enterprises became Darby Guido Construction, a sole proprietorship, to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the business growth with legacy. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. Dorena values her heritage and is an active member of the Citizen Band of the Potawatomi Tribe. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking her secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business and taking after his forefathers, construction and concrete are a passion and a way of life for Darby. In addition to being the Operations Manager for Guido Construction Inc. and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, time on his jet ski, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1636598805279-bfa38a03-269a-2\" include=\"302,271,268,310,307,359\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"166\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-11-11 16:37:30','2021-11-11 16:37:30','',60,'https://guidoconstructioninc.com/?p=455',0,'revision','',0),
(456,1,'2021-11-15 22:16:22','2021-11-15 22:16:22','','Guido_Construction_Roseburg_Oregon_ConcreteWork_pano_USFS','','inherit','open','closed','','guido_construction_roseburg_oregon_concretework_pano_usfs','','','2021-11-15 22:16:22','2021-11-15 22:16:22','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/11/Guido_Construction_Roseburg_Oregon_ConcreteWork_pano_USFS.png',0,'attachment','image/png',0),
(457,1,'2021-11-15 22:17:40','2021-11-15 22:17:40','','Roseburg_National_Cemetary_Brick_Concrete_ (2)','','inherit','open','closed','','roseburg_national_cemetary_brick_concrete_-2','','','2021-11-15 22:17:40','2021-11-15 22:17:40','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/11/Roseburg_National_Cemetary_Brick_Concrete_-2.png',0,'attachment','image/png',0),
(458,1,'2021-11-15 22:17:43','2021-11-15 22:17:43','','Roseburg_National_Cemetary_Brick_Concrete_ (1)','','inherit','open','closed','','roseburg_national_cemetary_brick_concrete_-1','','','2021-11-15 22:17:43','2021-11-15 22:17:43','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/11/Roseburg_National_Cemetary_Brick_Concrete_-1.png',0,'attachment','image/png',0),
(459,1,'2021-11-15 22:18:47','2021-11-15 22:18:47','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg and has over 37 years of concrete experience. His grandparents, Frank and Nina Guido, started a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cradar Enterprises with his father, Steve Guido, and mentor, Mel Gregory. For the next 15 years, operating Cradar helped Darby hone his management experience with concrete. By 2000, Cradar Enterprises became Darby Guido Construction, a sole proprietorship, to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the business growth with legacy. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. Dorena values her heritage and is an active member of the Citizen Band of the Potawatomi Tribe. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking her secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business and taking after his forefathers, construction and concrete are a passion and a way of life for Darby. In addition to being the Operations Manager for Guido Construction Inc. and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, time on his jet ski, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637014674439-feb5d126-07f2-1\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-11-15 22:18:47','2021-11-15 22:18:47','',60,'https://guidoconstructioninc.com/?p=459',0,'revision','',0),
(460,1,'2021-11-15 22:19:30','2021-11-15 22:19:30','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was raised locally in Roseburg and has over 37 years of concrete experience. His grandparents, Frank and Nina Guido, started a large ranch and operated Umpqua Sand and Gravel. Darby learned a life of hard work on the ranch and was immersed from an early age in the culture and business of concrete.\r\n\r\nIn 1985, Darby started the business Cradar Enterprises with his father, Steve Guido, and mentor, Mel Gregory. For the next 15 years, operating Cradar helped Darby hone his management experience with concrete. By 2000, Cradar Enterprises became Darby Guido Construction, a sole proprietorship, to reflect the expertise and reputation of company ownership. For 10 years, Darby completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company was again renamed and restructured in 2010 to Guido Construction Inc. in order to reflect the business growth with legacy. Dorena, Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children each took on professional roles within the business, where as a family they are helping the business grow and succeed.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. Dorena values her heritage and is an active member of the Citizen Band of the Potawatomi Tribe. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking her secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business and taking after his forefathers, construction and concrete are a passion and a way of life for Darby. In addition to being the Operations Manager for Guido Construction Inc. and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, time on his jet ski, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637014730283-1a881f5b-603c-1\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-11-15 22:19:30','2021-11-15 22:19:30','',60,'https://guidoconstructioninc.com/?p=460',0,'revision','',0),
(461,1,'2021-11-15 22:20:14','2021-11-15 22:20:14','[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n&nbsp;\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">FOR ADDITIONAL INFORMATION</h3>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">PLEASE CONTACT US BY EMAIL AND ONE OF OUR ESTIMATORS WILL CONTACT YOU.</h3>\r\n[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">contact@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"GUIDO CONSTRUCTION\r\nCCB# 183146\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-11-15 22:20:14','2021-11-15 22:20:14','',57,'https://guidoconstructioninc.com/?p=461',0,'revision','',0),
(462,1,'2021-11-15 22:26:41','2021-11-15 22:26:41','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in building. Our story begins with our founder, Darby Guido, who was born and raised locally in Roseburg and has over 37 years of building experience. His grandparents, Frank and Nina Guido, created many businesses including Umpqua Sand and Gravel - Concrete Service. Darby learned his work ethic, living and working on the Guido Ranch. Immersed from an early age in the culture of business and working.\r\n\r\nIn 1986, Darby began his career in business with Cradar Enterprises “Craig &amp; Darby” with Steve &amp; Peggy Guido. For the next 15 years, learning to build with Cradar helped Darby develop his management experience in Building and Concrete Construction. By 2000, Darby Guido purchased Mel Gregory’s equipment “his mentor in concrete”. With the support of family businesses in Construction, created a sole proprietorship “Darby Guido Construction”.\r\n\r\nFor 8 years, Darby Guido Construction experienced growth and a success in the concrete industry, by completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company became incorporated in 2008 to Guido Construction Inc. In order to reflect the business growth with a long legacy in mind. Dorena Guido Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children are developing there professional roles within the business, with generational work ethics.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. Dorena values her heritage and is an active member of the Citizen Band of the Potawatomi Tribe. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking her secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business and taking after his forefathers, construction and concrete are a passion and a way of life for Darby. In addition to being the Operations Manager for Guido Construction Inc. and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, time on his jet ski, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637014839758-108536ce-bab8-7\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-11-15 22:26:41','2021-11-15 22:26:41','',60,'https://guidoconstructioninc.com/?p=462',0,'revision','',0),
(463,1,'2021-11-15 22:30:24','2021-11-15 22:30:24','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in building. Our story begins with our founder, Darby Guido, who was born and raised locally in Roseburg and has over 37 years of building experience. His grandparents, Frank and Nina Guido, created many businesses including Umpqua Sand and Gravel - Concrete Service. Darby learned his work ethic, living and working on the Guido Ranch. Immersed from an early age in the culture of business and working.\r\n\r\nIn 1986, Darby began his career in business with Cradar Enterprises “Craig &amp; Darby” with Steve &amp; Peggy Guido. For the next 15 years, learning to build with Cradar helped Darby develop his management experience in Building and Concrete Construction. By 2000, Darby Guido purchased Mel Gregory’s equipment “his mentor in concrete”. With the support of family businesses in Construction, created a sole proprietorship “Darby Guido Construction”.\r\n\r\nFor 8 years, Darby Guido Construction experienced growth and a success in the concrete industry, by completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company became incorporated in 2008 to Guido Construction Inc. In order to reflect the business growth with a long legacy in mind. Dorena Guido Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children are developing there professional roles within the business, with generational work ethics.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"269\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. Dorena values her heritage and is an active member of the Citizen Band of the Potawatomi Tribe. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking her secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business and taking after his forefathers, construction and concrete are a passion and a way of life for Darby. In addition to being the Operations Manager for Guido Construction Inc. and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, time on his jet ski, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637015204562-e53cfca5-3f88-1\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-11-15 22:30:24','2021-11-15 22:30:24','',60,'https://guidoconstructioninc.com/?p=463',0,'revision','',0),
(464,1,'2021-11-15 22:53:42','2021-11-15 22:53:42','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637016327332-e1989ea8-0d16-0\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637016327336-72fd0aa0-f084-8\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-15 22:53:42','2021-11-15 22:53:42','',41,'https://guidoconstructioninc.com/?p=464',0,'revision','',0),
(465,1,'2021-11-16 00:41:53','2021-11-16 00:41:53','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637016825051-1c0e7636-7aef-1\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637016825055-b5037fb0-b4df-1\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-16 00:41:53','2021-11-16 00:41:53','',41,'https://guidoconstructioninc.com/?p=465',0,'revision','',0),
(466,1,'2021-11-16 00:44:03','2021-11-16 00:44:03','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327\" img_size=\"650x432\" onclick=\"link_no\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3 style=\"text-align: left;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1637023405899-1fb4b915-8df2-7\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1637023405899-c9b5225b-9a7b-5\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1637023405900-0925bb01-bfe0-7\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1637023405900-f90c5b8c-014b-1\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1637023405900-bbd1f418-4abe-1\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1637023405901-c6972ccc-685e-3\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1637023419991-64fccb20-f468-7\" include=\"457,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-11-16 00:44:03','2021-11-16 00:44:03','',59,'https://guidoconstructioninc.com/?p=466',0,'revision','',0),
(468,1,'2021-11-16 00:48:47','2021-11-16 00:48:47','','Roseburg_National_Cemetary_Top_Down_Image_BrickandStoneWork','','inherit','open','closed','','roseburg_national_cemetary_top_down_image_brickandstonework','','','2021-11-16 00:48:47','2021-11-16 00:48:47','',59,'https://guidoconstructioninc.com/wp-content/uploads/2021/11/Roseburg_National_Cemetary_Top_Down_Image_BrickandStoneWork.png',0,'attachment','image/png',0),
(469,1,'2021-11-16 00:48:55','2021-11-16 00:48:55','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327\" img_size=\"650x432\" onclick=\"link_no\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3 style=\"text-align: left;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1637023445515-d54b75cf-6307-7\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1637023445516-58c91fc3-dab2-5\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1637023445516-c00fde5e-d3fb-5\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1637023445517-b26f1276-162a-0\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1637023445517-423d9197-4922-5\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1637023445517-b3478f03-a4aa-3\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1637023445518-bc968bd5-fd0b-9\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-11-16 00:48:55','2021-11-16 00:48:55','',59,'https://guidoconstructioninc.com/?p=469',0,'revision','',0),
(470,1,'2021-11-18 17:02:54','2021-11-18 17:02:54','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637254928841-0d4fac26-41e9-7\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637254928845-376b9a9e-568c-10\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text][/vc_column_text][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-18 17:02:54','2021-11-18 17:02:54','',41,'https://guidoconstructioninc.com/?p=470',0,'revision','',0),
(472,1,'2021-11-18 17:10:17','2021-11-18 17:10:17','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637254977767-569231f8-87b1-0\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637254977771-e850161b-c502-10\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]&lt;meta name=\"simpledcver\" content=\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkb21haW4iOiJndWlkb2NvbnN0cnVjdGlvbmluYy5jb20iLCJleHAiOjE2Mzc3OTg0MDB9.N8JBREkWnhv8TlT81ljIEK7HKT4t1W2REewqsdKA4pE\"&gt;[/vc_column_text][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-18 17:10:17','2021-11-18 17:10:17','',41,'https://guidoconstructioninc.com/?p=472',0,'revision','',0),
(473,1,'2021-11-18 17:12:34','2021-11-18 17:12:34','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637255420851-a9a7d6fa-1438-3\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637255420855-49be185d-1f42-4\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]&lt;meta name=\"simpledcver\" content=\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkb21haW4iOiJndWlkb2NvbnN0cnVjdGlvbmluYy5jb20iLCJleHAiOjE2Mzc3OTg0MDB9.N8JBREkWnhv8TlT81ljIEK7HKT4t1W2REewqsdKA4pE\"&gt;[/vc_column_text][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-18 17:12:34','2021-11-18 17:12:34','',41,'https://guidoconstructioninc.com/?p=473',0,'revision','',0),
(475,1,'2021-11-18 17:14:28','2021-11-18 17:14:28','','lambert','','publish','closed','closed','','lambert','','','2025-09-24 01:22:11','2025-09-24 01:22:11','',0,'https://guidoconstructioninc.com/2021/11/18/lambert/',0,'custom_css','',0),
(476,1,'2021-11-18 17:14:28','2021-11-18 17:14:28','','lambert','','inherit','closed','closed','','475-revision-v1','','','2021-11-18 17:14:28','2021-11-18 17:14:28','',475,'https://guidoconstructioninc.com/?p=476',0,'revision','',0),
(477,1,'2021-11-18 17:56:52','2021-11-18 17:56:52','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637256034261-a04fc44e-ccba-3\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637256034267-54b21613-0843-7\" include=\"267,266,271,265\"][vc_empty_space][vc_wp_text]<code> meta name=\"simpledcver\" content=\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkb21haW4iOiJndWlkb2NvbnN0cnVjdGlvbmluYy5jb20iLCJleHAiOjE2Mzc3OTg0MDB9.N8JBREkWnhv8TlT81ljIEK7HKT4t1W2REewqsdKA4pE\" </code>[/vc_wp_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-18 17:56:52','2021-11-18 17:56:52','',41,'https://guidoconstructioninc.com/?p=477',0,'revision','',0),
(478,1,'2021-11-18 18:01:00','2021-11-18 18:01:00','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637258215833-e7af0287-827a-7\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637258215838-6f3eb95d-0b1e-5\" include=\"267,266,271,265\"][vc_empty_space][vc_wp_text]&lt;meta name=\"simpledcver\" content=\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkb21haW4iOiJndWlkb2NvbnN0cnVjdGlvbmluYy5jb20iLCJleHAiOjE2Mzc3OTg0MDB9.N8JBREkWnhv8TlT81ljIEK7HKT4t1W2REewqsdKA4pE\"&gt;[/vc_wp_text][vc_column_text]&lt;meta name=\"simpledcver\" content=\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkb21haW4iOiJndWlkb2NvbnN0cnVjdGlvbmluYy5jb20iLCJleHAiOjE2Mzc3OTg0MDB9.N8JBREkWnhv8TlT81ljIEK7HKT4t1W2REewqsdKA4pE\"&gt;[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-18 18:01:00','2021-11-18 18:01:00','',41,'https://guidoconstructioninc.com/?p=478',0,'revision','',0),
(479,1,'2021-11-18 18:06:09','2021-11-18 18:06:09','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637258492646-4853dc95-f918-8\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637258492650-34fe0ac1-a3c5-10\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-18 18:06:09','2021-11-18 18:06:09','',41,'https://guidoconstructioninc.com/?p=479',0,'revision','',0),
(480,1,'2021-11-18 20:57:26','2021-11-18 20:57:26','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637258772118-7652cf3f-476d-1\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637258772122-c51254cb-bc40-7\" include=\"267,266,271,265\"][vc_empty_space][vc_column_text]&lt;meta name=\"simpledcver\" content=\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkb21haW4iOiJndWlkb2NvbnN0cnVjdGlvbmluYy5jb20iLCJleHAiOjE2Mzc3OTg0MDB9.N8JBREkWnhv8TlT81ljIEK7HKT4t1W2REewqsdKA4pE\"&gt;[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-18 20:57:26','2021-11-18 20:57:26','',41,'https://guidoconstructioninc.com/?p=480',0,'revision','',0),
(481,1,'2021-11-18 20:57:51','2021-11-18 20:57:51','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637269049254-1ac140df-5630-4\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637269049259-0ecacc2c-12ea-10\" include=\"267,266,271,265\"][vc_empty_space][vc_column_text]&lt;meta name=\"simpledcver\" content=\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJkb21haW4iOiJndWlkb2NvbnN0cnVjdGlvbmluYy5jb20iLCJleHAiOjE2Mzc3OTg0MDB9.N8JBREkWnhv8TlT81ljIEK7HKT4t1W2REewqsdKA4pE\"&gt;[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-18 20:57:51','2021-11-18 20:57:51','',41,'https://guidoconstructioninc.com/?p=481',0,'revision','',0),
(482,1,'2021-11-18 21:17:33','2021-11-18 21:17:33','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637269074503-e913e0bf-0ee6-5\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637269074508-9ebb0840-0e43-5\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-18 21:17:33','2021-11-18 21:17:33','',41,'https://guidoconstructioninc.com/?p=482',0,'revision','',0),
(484,1,'2021-11-19 18:08:34','2021-11-19 18:08:34','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637345099813-76c0ed65-a8a7-10\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInLeft\" link=\"http://guidoconstructioninc.com/portfolio\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInUp\" link=\"http://guidoconstructioninc.com/services\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInRight\" link=\"http://guidoconstructioninc.com/about-us\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637345099818-7a21a011-c8d3-5\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-19 18:08:34','2021-11-19 18:08:34','',41,'https://guidoconstructioninc.com/?p=484',0,'revision','',0),
(485,1,'2021-11-19 18:11:17','2021-11-19 18:11:17','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION SERVICES\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"45px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"PRE-CONSTRUCTION\r\nSERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"CONSTRUCTION\r\nSERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Foundations &amp; Footings</li>\r\n 	<li style=\"text-align: left;\">Structural Concrete</li>\r\n 	<li style=\"text-align: left;\">Decorative Colored Stamped Concrete</li>\r\n 	<li style=\"text-align: left;\">Commercial / Retail Concrete</li>\r\n 	<li style=\"text-align: left;\">Extruded Curb</li>\r\n 	<li style=\"text-align: left;\">Machined Curb &amp; Sidewalk</li>\r\n 	<li style=\"text-align: left;\">Architectural Stone</li>\r\n 	<li style=\"text-align: left;\">Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_custom_heading text=\"ASPHALT\r\nSERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Asphalt Paving</li>\r\n 	<li style=\"text-align: left;\">Asphalt Repairs</li>\r\n 	<li style=\"text-align: left;\">Grading</li>\r\n 	<li style=\"text-align: left;\">Crack Sealing</li>\r\n 	<li style=\"text-align: left;\">Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"QUALITY WORK AT COMPETITIVE RATES\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1637345455013-2f92f34b-7174-9\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"PLAN, BUILD &amp; DELIVER\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">We have tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n[/vc_column_text][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1637345455015-492a4f52-1d34-3\" include=\"270,263,267\"][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1637345455016-d1f9e810-e1f4-4\" include=\"99,96,92,101\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"CONTACT US FOR YOUR\r\nFREE PROJECT ESTIMATE\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-11-19 18:11:17','2021-11-19 18:11:17','',58,'https://guidoconstructioninc.com/?p=485',0,'revision','',0),
(486,1,'2021-11-19 18:12:10','2021-11-19 18:12:10','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637345485531-0ed09d4e-05cc-10\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInLeft\" link=\"http://guidoconstructioninc.com/portfolio\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInUp\" link=\"http://guidoconstructioninc.com/services\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInRight\" link=\"http://guidoconstructioninc.com/about-us\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637345485535-8deb9c25-821f-1\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-19 18:12:10','2021-11-19 18:12:10','',41,'https://guidoconstructioninc.com/?p=486',0,'revision','',0),
(487,1,'2021-11-19 18:12:52','2021-11-19 18:12:52','[vc_row css=\".vc_custom_1630101360771{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630104755379{background-color: #141a3c !important;}\"][vc_column][vc_empty_space height=\"15px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION SERVICES\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"45px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"175\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"PRE-CONSTRUCTION\r\nSERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space][vc_column_text css_animation=\"fadeInLeft\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Schematic Design</li>\r\n 	<li style=\"text-align: left;\">Budgeting</li>\r\n 	<li style=\"text-align: left;\">Scheduling</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"174\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"CONSTRUCTION\r\nSERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Foundations &amp; Footings</li>\r\n 	<li style=\"text-align: left;\">Structural Concrete</li>\r\n 	<li style=\"text-align: left;\">Decorative Colored Stamped Concrete</li>\r\n 	<li style=\"text-align: left;\">Commercial / Retail Concrete</li>\r\n 	<li style=\"text-align: left;\">Extruded Curb</li>\r\n 	<li style=\"text-align: left;\">Machined Curb &amp; Sidewalk</li>\r\n 	<li style=\"text-align: left;\">Architectural Stone</li>\r\n 	<li style=\"text-align: left;\">Large Retaining Walls</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"173\" alignment=\"center\" css_animation=\"fadeInRight\"][vc_custom_heading text=\"ASPHALT\r\nSERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_empty_space][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">Asphalt Paving</li>\r\n 	<li style=\"text-align: left;\">Asphalt Repairs</li>\r\n 	<li style=\"text-align: left;\">Grading</li>\r\n 	<li style=\"text-align: left;\">Crack Sealing</li>\r\n 	<li style=\"text-align: left;\">Seal Coating</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"QUALITY WORK AT COMPETITIVE RATES\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1637345546524-093004af-2a0b-2\" include=\"94,102,93,91\"][vc_empty_space][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">Guido Construction specializes in cast in place concrete. Our scope of work covers simple residential walkways to large commercial and industrial projects.</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"PLAN, BUILD &amp; DELIVER\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_round_chart type=\"doughnut\" style=\"custom\" stroke_width=\"2\" values=\"%5B%7B%22title%22%3A%22Large%20Commercial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22blue%22%2C%22custom_color%22%3A%22%23141a3c%22%7D%2C%7B%22title%22%3A%22Residential%20Walkways%22%2C%22value%22%3A%2230%22%2C%22color%22%3A%22chino%22%2C%22custom_color%22%3A%22%23a4b0bc%22%7D%2C%7B%22title%22%3A%22Industrial%20Projects%22%2C%22value%22%3A%2260%22%2C%22color%22%3A%22pink%22%2C%22custom_color%22%3A%22%23316fbc%22%7D%5D\" css_animation=\"fadeInUp\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<p style=\"text-align: center;\">We have tremendous experience on industrial and commercial projects, but we also pride ourselves on our residential work. We provide all the services you need for your next project.</p>\r\n[/vc_column_text][vc_empty_space][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1637345546526-08096ff1-be15-6\" include=\"270,263,267\"][vc_media_grid element_width=\"3\" grid_id=\"vc_gid:1637345546527-5a8e6634-a9d1-0\" include=\"99,96,92,101\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"CONTACT US FOR YOUR\r\nFREE PROJECT ESTIMATE\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20px\"][vc_btn title=\"Contact US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Services','','inherit','closed','closed','','58-revision-v1','','','2021-11-19 18:12:52','2021-11-19 18:12:52','',58,'https://guidoconstructioninc.com/?p=487',0,'revision','',0),
(488,1,'2021-11-19 18:14:12','2021-11-19 18:14:12','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327\" img_size=\"650x432\" onclick=\"link_no\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3 style=\"text-align: left;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"Contact Us\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1637345593634-9a2738ed-62b1-5\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1637345593635-5bb9ac0a-316f-5\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1637345593636-33b2bab2-8444-3\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1637345593637-490ea3d2-6d33-1\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1637345593637-47db19bf-ec6c-9\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1637345593638-7c8251fe-995a-4\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1637345593638-b4ddb559-48db-9\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-11-19 18:14:12','2021-11-19 18:14:12','',59,'https://guidoconstructioninc.com/?p=488',0,'revision','',0),
(490,1,'2021-11-19 18:22:45','2021-11-19 18:22:45','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327\" img_size=\"650x432\" onclick=\"link_no\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3 style=\"text-align: left;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1637346152743-62fedb74-fc21-1\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1637346152745-90c95d66-eb32-5\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1637346152745-790ec745-12dc-1\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1637346152745-4e4ebe17-2999-9\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1637346152745-7242bb29-6517-1\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1637346152747-63307135-6e68-1\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1637346152747-7e97867a-4746-0\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2021-11-19 18:22:45','2021-11-19 18:22:45','',59,'https://guidoconstructioninc.com/?p=490',0,'revision','',0),
(491,1,'2021-11-19 18:48:23','2021-11-19 18:48:23','<p>[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]</p>\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n<p>[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" offset=\"vc_hidden-sm vc_hidden-xs\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n<p>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637347527106-93d8b2b9-d92b-9\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInLeft\" link=\"http://guidoconstructioninc.com/portfolio\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInUp\" link=\"http://guidoconstructioninc.com/services\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInRight\" link=\"http://guidoconstructioninc.com/about-us\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]</p>\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637347527111-e1444e50-4c19-7\" include=\"267,266,271,265\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]</p>\r\n','Home','','inherit','closed','closed','','41-revision-v1','','','2021-11-19 18:48:23','2021-11-19 18:48:23','',41,'https://guidoconstructioninc.com/?p=491',0,'revision','',0),
(492,1,'2021-11-19 18:49:44','2021-11-19 18:49:44','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was born and raised locally in Roseburg and has over 37 years of building experience. His grandparents, Frank and Nina Guido, created many businesses including Umpqua Sand and Gravel - Concrete Service. Darby learned his work ethic, living and working on the Guido Ranch. Immersed from an early age in the culture of business and working.\r\n\r\nIn 1986, Darby began his career in business with Cradar Enterprises “Craig &amp; Darby” with Steve &amp; Peggy Guido. For the next 15 years, learning to build with Cradar helped Darby develop his management experience in Building and Concrete Construction. By 2000, Darby Guido purchased Mel Gregory’s equipment “his mentor in concrete”. With the support of family businesses in Construction, created a sole proprietorship “Darby Guido Construction”.\r\n\r\nFor 8 years, Darby Guido Construction experienced growth and a success in the concrete industry, by completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company became incorporated in 2008 to Guido Construction Inc. In order to reflect the business growth with a long legacy in mind. Dorena Guido Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children are developing there professional roles within the business, with generational work ethics.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"269\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. Dorena values her heritage and is an active member of the Citizen Band of the Potawatomi Tribe. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking her secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business and taking after his forefathers, construction and concrete are a passion and a way of life for Darby. In addition to being the Operations Manager for Guido Construction Inc. and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, time on his jet ski, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1637347764306-fdc3bfbc-aae6-2\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2021-11-19 18:49:44','2021-11-19 18:49:44','',60,'https://guidoconstructioninc.com/?p=492',0,'revision','',0),
(494,1,'2021-12-03 18:05:13','2021-12-03 18:05:13','[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h2 style=\"text-align: center; color: white;\">FREE ESTIMATES</h2>\r\n&nbsp;\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">FOR ADDITIONAL INFORMATION</h3>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">PLEASE CONTACT US BY EMAIL AND ONE OF OUR ESTIMATORS WILL CONTACT YOU.</h3>\r\n[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"GUIDO CONSTRUCTION\r\nCCB# 183146\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-12-03 18:05:13','2021-12-03 18:05:13','',57,'https://guidoconstructioninc.com/?p=494',0,'revision','',0),
(498,1,'2022-06-14 21:37:51','2022-06-14 21:37:51','[awsmjobs]','Jobs','','private','closed','closed','','job-openings','','','2022-06-14 21:58:34','2022-06-14 21:58:34','',0,'https://guidoconstructioninc.com/job-openings/',0,'page','',0),
(499,1,'2022-06-14 21:58:16','2022-06-14 21:58:16','<p>[awsmjobs]</p>','Jobs','','inherit','closed','closed','','498-revision-v1','','','2022-06-14 21:58:16','2022-06-14 21:58:16','',498,'https://guidoconstructioninc.com/?p=499',0,'revision','',0),
(500,1,'2022-06-14 21:58:34','2022-06-14 21:58:34','[awsmjobs]','Jobs','','inherit','closed','closed','','498-revision-v1','','','2022-06-14 21:58:34','2022-06-14 21:58:34','',498,'https://guidoconstructioninc.com/?p=500',0,'revision','',0),
(502,1,'2022-06-30 00:12:01','2022-06-30 00:12:01','[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">FOR ADDITIONAL INFORMATION</h3>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">PLEASE CONTACT US BY EMAIL AND ONE OF OUR ESTIMATORS WILL CONTACT YOU.</h3>\r\n[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"GUIDO CONSTRUCTION\r\nCCB# 183146\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2022-06-30 00:12:01','2022-06-30 00:12:01','',57,'https://guidoconstructioninc.com/?p=502',0,'revision','',0),
(503,1,'2025-09-24 00:30:13','2025-09-24 00:30:13','[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">FOR ADDITIONAL INFORMATION</h3>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">PLEASE CONTACT US BY EMAIL AND ONE OF OUR ESTIMATORS WILL CONTACT YOU</h3>\r\n[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"GUIDO CONSTRUCTION\r\nCCB# 183146\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-autosave-v1','','','2025-09-24 00:30:13','2025-09-24 00:30:13','',57,'https://guidoconstructioninc.com/?p=503',0,'revision','',0),
(504,1,'2022-06-30 00:12:26','2022-06-30 00:12:26','[vc_row][vc_column][vc_empty_space height=\"130px\" css=\".vc_custom_1630709460446{background-color: #a4b0bc !important;}\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css_animation=\"fadeInUp\"][vc_column parallax=\"content-moving-fade\" css=\".vc_custom_1630709344654{background-color: #316fbc !important;}\"][vc_empty_space height=\"100px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">FOR ADDITIONAL INFORMATION</h3>\r\n<h3 style=\"text-align: center; color: orange; text-shadow: 0px 0px #ffffff;\">PLEASE CONTACT US BY EMAIL AND ONE OF OUR ESTIMATORS WILL CONTACT YOU</h3>\r\n[/vc_column_text][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-mobile-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInLeft\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Call\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_custom_heading text=\"541.672.7349\" font_container=\"tag:h5|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-map-marked-alt\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInUp\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Visit\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"190 NE Somerset Ct\r\nRoseburg, OR 97470\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fwww.google.com%2Fmaps%2Fdir%2F%2Fgoogle%2Bmaps%2Bguido%2Bconstruction%2Broseburg%2Boregon%2F%4043.2202079%2C-123.3681453%2C13z%2Fdata%3D!4m8!4m7!1m0!1m5!1m1!1s0x54c4230ae5254d7f%3A0xdeb6abf3d2e7171e!2m2!1d-123.3020337!2d43.2127329|target:_blank\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_icon icon_fontawesome=\"fas fa-envelope\" color=\"white\" background_style=\"rounded\" background_color=\"custom\" align=\"center\" css_animation=\"fadeInRight\" custom_background_color=\"#141a3c\"][vc_custom_heading text=\"Email\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5><a href=\"mailto:info@guidoconstructioninc.com\">info@guidoconstructioninc.com</a></h5>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1630709756777{background-image: url(https://guidoconstructioninc.com/wp-content/uploads/2021/08/Roseburg-Oregon-VA-concrete-pour-aerial-photography-Guido_Construction.jpg?id=50) !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0yNiUyMTFtMTIlMjExbTMlMjExZDQ2NTE5LjgyMjcyMzcyNjU5JTIxMmQtMTIzLjM2ODE0NTI3MTg2MzA2JTIxM2Q0My4yMjAyMDc4NTkzMTgzODYlMjEybTMlMjExZjAlMjEyZjAlMjEzZjAlMjEzbTIlMjExaTEwMjQlMjEyaTc2OCUyMTRmMTMuMSUyMTRtMTElMjEzZTYlMjE0bTMlMjEzbTIlMjExZDQzLjIzMDgyMjQlMjEyZC0xMjMuMzY0OTY2NCUyMTRtNSUyMTFzMHg1NGM0MjMwYWU1MjU0ZDdmJTI1M0EweGRlYjZhYmYzZDJlNzE3MWUlMjEyc2dvb2dsZSUyNTIwbWFwcyUyNTIwZ3VpZG8lMjUyMGNvbnN0cnVjdGlvbiUyNTIwcm9zZWJ1cmclMjUyMG9yZWdvbiUyMTNtMiUyMTFkNDMuMjEyNzMyOSUyMTJkLTEyMy4zMDIwMzM3JTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE2MzAwOTI5MzA1MzAlMjE1bTIlMjExc2VuJTIxMnN1cyUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTNCJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNEJTIyJTIyJTIwbG9hZGluZyUzRCUyMmxhenklMjIlM0UlM0MlMkZpZnJhbWUlM0U=\" size=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_custom_heading text=\"GUIDO CONSTRUCTION\r\nCCB# 183146\" font_container=\"tag:h4|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2022-06-30 00:12:26','2022-06-30 00:12:26','',57,'https://guidoconstructioninc.com/?p=504',0,'revision','',0),
(506,1,'2025-09-24 00:33:01','2025-09-24 00:33:01','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1758673938998-f3ea7a9a-fc60-4\" include=\"583,582,581\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"40px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was born and raised locally in Roseburg and has over 37 years of building experience. His grandparents, Frank and Nina Guido, created many businesses including Umpqua Sand and Gravel - Concrete Service. Darby learned his work ethic, living and working on the Guido Ranch. Immersed from an early age in the culture of business and working.\r\n\r\nIn 1986, Darby began his career in business with Cradar Enterprises “Craig &amp; Darby” with Steve &amp; Peggy Guido. For the next 15 years, learning to build with Cradar helped Darby develop his management experience in Building and Concrete Construction. By 2000, Darby Guido purchased Mel Gregory’s equipment “his mentor in concrete”. With the support of family businesses in Construction, created a sole proprietorship “Darby Guido Construction”.\r\n\r\nFor 8 years, Darby Guido Construction experienced growth and a success in the concrete industry, by completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company became incorporated in 2008 to Guido Construction Inc. In order to reflect the business growth with a long legacy in mind. Dorena Guido Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children are developing there professional roles within the business, with generational work ethics.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"269\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"671\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"President &amp; CEO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text css=\"\"]Dorena is the esteemed leader at Guido Construction Inc. She takes great pride in her construction business, paving the way for women in the industry. Dorena highly values her heritage as a Tribal member of the Citizen Potawatomi Nation. In addition to being CEO, Dorena loves to spend time at the lake with her family and friends, playing fetch with her pups, and traveling.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Construction Manager &amp; COO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text css=\"\"]Darby is dedicated to the construction and concrete industry. Having grown up in the business and following in the footsteps of his forefathers, Darby views construction and concrete as both a passion and a vocation. Darby manages operations at Guido Construction Inc., overseeing crews and projects. In addition to playing with rocks, Darby enjoys family vacations, lake time, movie nights with his granddaughter, and gardening.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1758673939001-a049ae8c-6367-3\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-autosave-v1','','','2025-09-24 00:33:01','2025-09-24 00:33:01','',60,'https://guidoconstructioninc.com/?p=506',0,'revision','',0),
(507,1,'2023-01-25 20:07:59','2023-01-25 20:07:59','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was born and raised locally in Roseburg and has over 37 years of building experience. His grandparents, Frank and Nina Guido, created many businesses including Umpqua Sand and Gravel - Concrete Service. Darby learned his work ethic, living and working on the Guido Ranch. Immersed from an early age in the culture of business and working.\r\n\r\nIn 1986, Darby began his career in business with Cradar Enterprises “Craig &amp; Darby” with Steve &amp; Peggy Guido. For the next 15 years, learning to build with Cradar helped Darby develop his management experience in Building and Concrete Construction. By 2000, Darby Guido purchased Mel Gregory’s equipment “his mentor in concrete”. With the support of family businesses in Construction, created a sole proprietorship “Darby Guido Construction”.\r\n\r\nFor 8 years, Darby Guido Construction experienced growth and a success in the concrete industry, by completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company became incorporated in 2008 to Guido Construction Inc. In order to reflect the business growth with a long legacy in mind. Dorena Guido Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children are developing there professional roles within the business, with generational work ethics.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"269\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. Dorena values her heritage and is an active member of the Citizen Band of the Potawatomi Tribe. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking her secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business and taking after his forefathers, construction and concrete are a passion and a way of life for Darby. In addition to being the Operations Manager for Guido Construction Inc. and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, time on his jet ski, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1674677184860-f0f23851-0f5d-3\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2023-01-25 20:07:59','2023-01-25 20:07:59','',60,'https://guidoconstructioninc.com/?p=507',0,'revision','',0),
(508,1,'2023-01-25 20:08:55','2023-01-25 20:08:55','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" offset=\"vc_hidden-sm vc_hidden-xs\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1674677286649-02e64e24-407e-9\" include=\"50,51,32\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInLeft\" link=\"http://guidoconstructioninc.com/portfolio\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInUp\" link=\"http://guidoconstructioninc.com/services\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInRight\" link=\"http://guidoconstructioninc.com/about-us\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1674677286651-0b6c7b28-99c6-7\" include=\"267,266,271,265\"][vc_empty_space][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2023-01-25 20:08:55','2023-01-25 20:08:55','',41,'https://guidoconstructioninc.com/?p=508',0,'revision','',0),
(509,1,'2024-06-27 01:21:54','2024-06-27 01:21:54','','default','default','inherit','open','closed','','default-2','','','2024-06-27 01:21:54','2024-06-27 01:21:54','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/06/Guido-Construction-Medford-Concrete-1.jpg',0,'attachment','image/jpeg',0),
(510,1,'2024-06-27 01:21:59','2024-06-27 01:21:59','','default','default','inherit','open','closed','','default-3','','','2024-06-27 01:21:59','2024-06-27 01:21:59','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/06/Guido-Construction-Medford-Concrete-2.jpg',0,'attachment','image/jpeg',0),
(511,1,'2024-06-27 01:22:03','2024-06-27 01:22:03','','default','default','inherit','open','closed','','default-4','','','2024-06-27 01:22:03','2024-06-27 01:22:03','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/06/Guido-Construction-Medford-Concrete-3.jpg',0,'attachment','image/jpeg',0),
(512,1,'2024-06-27 01:22:07','2024-06-27 01:22:07','','default','default','inherit','open','closed','','default-5','','','2024-06-27 01:22:07','2024-06-27 01:22:07','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/06/Guido-Construction-Medford-Concrete-4.jpg',0,'attachment','image/jpeg',0),
(513,1,'2024-06-27 01:22:11','2024-06-27 01:22:11','','default','default','inherit','open','closed','','default-6','','','2024-06-27 01:22:11','2024-06-27 01:22:11','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/06/Guido-Construction-Medford-Concrete-5.jpg',0,'attachment','image/jpeg',0),
(514,1,'2024-06-27 01:22:16','2024-06-27 01:22:16','','default','default','inherit','open','closed','','default-7','','','2024-06-27 01:22:16','2024-06-27 01:22:16','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/06/Guido-Construction-Medford-Concrete-6.jpg',0,'attachment','image/jpeg',0),
(515,1,'2024-06-27 01:22:20','2024-06-27 01:22:20','','default','default','inherit','open','closed','','default-8','','','2024-06-27 01:22:20','2024-06-27 01:22:20','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/06/Guido-Construction-Medford-Concrete-7.jpg',0,'attachment','image/jpeg',0),
(516,1,'2024-06-27 01:22:23','2024-06-27 01:22:23','','default','default','inherit','open','closed','','default-9','','','2024-06-27 01:22:23','2024-06-27 01:22:23','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/06/Guido-Construction-Medford-Concrete-8.jpg',0,'attachment','image/jpeg',0),
(517,1,'2024-06-27 01:22:27','2024-06-27 01:22:27','','default','default','inherit','open','closed','','default-10','','','2024-06-27 01:22:27','2024-06-27 01:22:27','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/06/Guido-Construction-Medford-Concrete-9.jpg',0,'attachment','image/jpeg',0),
(518,1,'2024-06-27 01:22:30','2024-06-27 01:22:30','','default','default','inherit','open','closed','','default-11','','','2024-06-27 01:22:30','2024-06-27 01:22:30','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/06/Guido-Construction-Medford-Concrete-10.jpg',0,'attachment','image/jpeg',0),
(519,1,'2024-06-27 01:22:34','2024-06-27 01:22:34','','default','default','inherit','open','closed','','default-12','','','2024-06-27 01:22:34','2024-06-27 01:22:34','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/06/Guido-Construction-Medford-Concrete-11.jpg',0,'attachment','image/jpeg',0),
(520,1,'2024-06-27 01:22:38','2024-06-27 01:22:38','','default','default','inherit','open','closed','','default-13','','','2024-06-27 01:22:38','2024-06-27 01:22:38','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/06/Guido-Construction-Medford-Concrete-12.jpg',0,'attachment','image/jpeg',0),
(521,1,'2024-06-27 01:22:42','2024-06-27 01:22:42','','default','default','inherit','open','closed','','default-14','','','2024-06-27 01:22:42','2024-06-27 01:22:42','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/06/Guido-Construction-Medford-Concrete-13.jpg',0,'attachment','image/jpeg',0),
(522,1,'2024-06-27 01:22:47','2024-06-27 01:22:47','','default','default','inherit','open','closed','','default-15','','','2024-06-27 01:22:47','2024-06-27 01:22:47','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/06/Guido-Construction-Medford-Concrete-14.jpg',0,'attachment','image/jpeg',0),
(523,1,'2024-06-27 01:22:51','2024-06-27 01:22:51','','default','default','inherit','open','closed','','default-16','','','2024-06-27 01:22:51','2024-06-27 01:22:51','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/06/Guido-Construction-Medford-Concrete-15.jpg',0,'attachment','image/jpeg',0),
(524,1,'2024-06-28 19:41:19','2024-06-28 19:41:19','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/4LfhzISHbWY\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327\" img_size=\"650x432\" onclick=\"link_no\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3 style=\"text-align: left;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1719449775842-ca2a3a02-1ecc-10\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1719449725636-b32fbe57-e527-5\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1719449725637-fba101eb-5473-0\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1719449725637-88f13b3a-4303-7\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1719449725637-3c7f801d-1f0c-9\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1719449725638-c96cf536-eff7-4\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1719449725638-b60272b5-1007-7\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2024-06-28 19:41:19','2024-06-28 19:41:19','',59,'https://guidoconstructioninc.com/?p=524',0,'revision','',0),
(525,1,'2024-06-28 19:42:49','2024-06-28 19:42:49','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/4LfhzISHbWY\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327\" img_size=\"650x432\" onclick=\"link_no\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3 style=\"text-align: left;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1719603678252-60b27e18-d8bc-5\" include=\"522,514,516,517,518,513\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1719603700413-038fe986-d1e1-3\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1719603678252-010a008e-e5af-3\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1719603678252-2fc5729b-db5f-0\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1719603678253-712eded6-0163-9\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1719603678253-4f585401-43ee-8\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1719603678253-b35014d1-d94a-7\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1719603678253-8567768d-baf6-6\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2024-06-28 19:42:49','2024-06-28 19:42:49','',59,'https://guidoconstructioninc.com/?p=525',0,'revision','',0),
(526,1,'2024-06-28 19:44:54','2024-06-28 19:44:54','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/4LfhzISHbWY\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5 style=\"text-align: center;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h5>\r\n[/vc_column_text][vc_images_carousel images=\"330,301,352,310,326,269,327\" img_size=\"650x432\" onclick=\"link_no\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1719603767944-5691fb0b-6a02-3\" include=\"522,514,516,517,518,513\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1719603767945-c331952c-5f50-7\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1719603767945-41cc8bad-c194-3\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1719603767945-422157c7-5e17-4\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1719603767945-45767e51-eccb-4\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1719603767946-49181b7a-abbc-9\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1719603767946-23b0d979-b737-4\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1719603767946-6b53c7e4-899d-4\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2024-06-28 19:44:54','2024-06-28 19:44:54','',59,'https://guidoconstructioninc.com/?p=526',0,'revision','',0),
(527,1,'2024-06-28 19:46:30','2024-06-28 19:46:30','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/4LfhzISHbWY\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h5 style=\"text-align: center;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution oriented people we can tackle any problem.</h5>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327,515\" img_size=\"650x432\" onclick=\"link_no\" autoplay=\"yes\" wrap=\"yes\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1719603893826-75247809-1ef5-10\" include=\"522,514,516,517,518,513\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1719603893827-72c383b3-13ac-5\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1719603893827-99ce30a0-caee-2\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1719603893827-b802476d-a6d1-2\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1719603893827-cb2f30aa-f54b-2\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1719603893828-eb150b33-e02d-9\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1719603893828-f75ba8ec-76ee-5\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1719603893828-e3fb5076-3f6c-6\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2024-06-28 19:46:30','2024-06-28 19:46:30','',59,'https://guidoconstructioninc.com/?p=527',0,'revision','',0),
(528,1,'2024-06-28 19:46:55','2024-06-28 19:46:55','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/4LfhzISHbWY\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3 style=\"text-align: center;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution-oriented people, we can tackle any problem.</h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327,515\" img_size=\"650x432\" onclick=\"link_no\" autoplay=\"yes\" wrap=\"yes\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1719603989661-2fb952a0-f63a-2\" include=\"522,514,516,517,518,513\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1719603989662-13a85e71-bceb-2\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1719603989662-eb134cb2-d78f-1\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1719603989662-4e199788-82e4-8\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1719603989662-1a26cdf6-73e5-5\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1719603989662-6197607a-d2c1-3\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1719603989663-841514c8-1da5-10\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1719603989663-e3163ef8-ef38-3\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2024-06-28 19:46:55','2024-06-28 19:46:55','',59,'https://guidoconstructioninc.com/?p=528',0,'revision','',0),
(529,1,'2024-06-28 19:48:11','2024-06-28 19:48:11','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" offset=\"vc_hidden-sm vc_hidden-xs\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1719604036184-73609b75-5f10-8\" include=\"521,519,520\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInLeft\" link=\"http://guidoconstructioninc.com/portfolio\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInUp\" link=\"http://guidoconstructioninc.com/services\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInRight\" link=\"http://guidoconstructioninc.com/about-us\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1719604036186-bd88dfce-8f3c-3\" include=\"267,266,271,265\"][vc_empty_space][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2024-06-28 19:48:11','2024-06-28 19:48:11','',41,'https://guidoconstructioninc.com/?p=529',0,'revision','',0),
(531,1,'2024-07-05 20:53:44','2024-07-05 20:53:44','','DJI_20240703082928_0056_D','','inherit','open','closed','','dji_20240703082928_0056_d','','','2024-07-05 20:53:44','2024-07-05 20:53:44','',0,'https://guidoconstructioninc.com/wp-content/uploads/2024/07/DJI_20240703082928_0056_D.png',0,'attachment','image/png',0),
(532,1,'2024-07-05 20:54:04','2024-07-05 20:54:04','','DJI_20240703082308_0039_D','','inherit','open','closed','','dji_20240703082308_0039_d','','','2024-07-05 20:54:04','2024-07-05 20:54:04','',0,'https://guidoconstructioninc.com/wp-content/uploads/2024/07/DJI_20240703082308_0039_D.png',0,'attachment','image/png',0),
(533,1,'2024-07-05 21:19:08','2024-07-05 21:19:08','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/4LfhzISHbWY\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3 style=\"text-align: center;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution-oriented people, we can tackle any problem.</h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327,515\" img_size=\"650x432\" onclick=\"link_no\" autoplay=\"yes\" wrap=\"yes\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1720214286513-e62e5174-69a4-9\" include=\"512,513,511,509,510,518\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1720214209668-5c8eeffe-d952-10\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1720214209668-f9c65121-27da-4\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1720214209668-28fe567d-00a1-9\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1720214209668-ca2488e1-8063-10\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1720214209668-b669868e-347b-6\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1720214209669-077b420e-0f5e-8\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1720214209669-cf647d00-7369-1\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2024-07-05 21:19:08','2024-07-05 21:19:08','',59,'https://guidoconstructioninc.com/?p=533',0,'revision','',0),
(534,1,'2024-07-05 21:22:52','2024-07-05 21:22:52','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" offset=\"vc_hidden-sm vc_hidden-xs\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1720214451049-cbaba736-14b1-5\" include=\"352,360,359\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInLeft\" link=\"http://guidoconstructioninc.com/portfolio\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInUp\" link=\"http://guidoconstructioninc.com/services\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInRight\" link=\"http://guidoconstructioninc.com/about-us\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1720214451051-d57119a5-7ea7-6\" include=\"267,266,271,265\"][vc_empty_space][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2024-07-05 21:22:52','2024-07-05 21:22:52','',41,'https://guidoconstructioninc.com/?p=534',0,'revision','',0),
(535,1,'2024-07-05 21:24:15','2024-07-05 21:24:15','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" offset=\"vc_hidden-sm vc_hidden-xs\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1720214574079-86d85cf1-3df6-10\" include=\"531,359,309\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInLeft\" link=\"http://guidoconstructioninc.com/portfolio\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInUp\" link=\"http://guidoconstructioninc.com/services\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInRight\" link=\"http://guidoconstructioninc.com/about-us\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1720214574081-fb785fac-79c6-0\" include=\"267,266,271,265\"][vc_empty_space][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2024-07-05 21:24:15','2024-07-05 21:24:15','',41,'https://guidoconstructioninc.com/?p=535',0,'revision','',0),
(536,1,'2024-07-05 21:25:50','2024-07-05 21:25:50','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"turquoise\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"peacoc\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_color=\"peacoc\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" btn_button_block=\"true\" i_on_border=\"true\" css=\".vc_custom_1629939100567{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" offset=\"vc_hidden-sm vc_hidden-xs\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1720214656958-f82f7eb6-dee3-9\" include=\"531,359,378\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInLeft\" link=\"http://guidoconstructioninc.com/portfolio\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInUp\" link=\"http://guidoconstructioninc.com/services\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInRight\" link=\"http://guidoconstructioninc.com/about-us\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1720214656959-6dd519f2-69ad-5\" include=\"267,266,271,265\"][vc_empty_space][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2024-07-05 21:25:50','2024-07-05 21:25:50','',41,'https://guidoconstructioninc.com/?p=536',0,'revision','',0),
(537,1,'2024-07-05 21:30:14','2024-07-05 21:30:14','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"blue\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"blue\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" css=\".vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" offset=\"vc_hidden-sm vc_hidden-xs\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1720214751506-5138baef-97f4-2\" include=\"531,359,378\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInLeft\" link=\"http://guidoconstructioninc.com/portfolio\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInUp\" link=\"http://guidoconstructioninc.com/services\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInRight\" link=\"http://guidoconstructioninc.com/about-us\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1720214751508-87dbeba7-f9bd-6\" include=\"267,266,271,265\"][vc_empty_space][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2024-07-05 21:30:14','2024-07-05 21:30:14','',41,'https://guidoconstructioninc.com/?p=537',0,'revision','',0),
(538,1,'2024-07-05 21:38:55','2024-07-05 21:38:55','','DJI_20240703092219_0133_D','','inherit','open','closed','','dji_20240703092219_0133_d','','','2024-07-05 21:38:55','2024-07-05 21:38:55','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/07/DJI_20240703092219_0133_D.png',0,'attachment','image/png',0),
(539,1,'2024-07-06 00:24:03','2024-07-06 00:24:03','','DJI_20240703084551_0085_D','','inherit','open','closed','','dji_20240703084551_0085_d','','','2024-07-06 00:24:03','2024-07-06 00:24:03','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/07/DJI_20240703084551_0085_D.png',0,'attachment','image/png',0),
(540,1,'2024-07-06 00:24:05','2024-07-06 00:24:05','','DJI_20240703084939_0095_D','','inherit','open','closed','','dji_20240703084939_0095_d','','','2024-07-06 00:24:05','2024-07-06 00:24:05','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/07/DJI_20240703084939_0095_D.png',0,'attachment','image/png',0),
(541,1,'2024-07-06 00:24:07','2024-07-06 00:24:07','','DJI_20240703085055_0103_D','','inherit','open','closed','','dji_20240703085055_0103_d','','','2024-07-06 00:24:07','2024-07-06 00:24:07','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/07/DJI_20240703085055_0103_D.png',0,'attachment','image/png',0),
(542,1,'2024-07-06 00:24:09','2024-07-06 00:24:09','','DJI_20240703091550_0124_D','','inherit','open','closed','','dji_20240703091550_0124_d','','','2024-07-06 00:24:09','2024-07-06 00:24:09','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/07/DJI_20240703091550_0124_D.png',0,'attachment','image/png',0),
(543,1,'2024-07-06 00:24:25','2024-07-06 00:24:25','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/4LfhzISHbWY\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3 style=\"text-align: center;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution-oriented people, we can tackle any problem.</h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327,515\" img_size=\"650x432\" onclick=\"link_no\" autoplay=\"yes\" wrap=\"yes\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1720215507916-defc529b-54e5-4\" include=\"538,531,540,539,541,542\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1720215518561-27241d6f-da49-2\" include=\"512,513,511,509,510,518\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1720215507916-37013d7e-c7a5-2\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1720215507917-f3a3fbbd-26e9-7\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1720215507917-190ed955-facd-8\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1720215507917-d6525808-c2a6-1\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1720215507917-f9d2f07c-78b1-5\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1720215507917-13543c08-ad73-2\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1720215507918-374cfc1c-8b5b-7\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2024-07-06 00:24:25','2024-07-06 00:24:25','',59,'https://guidoconstructioninc.com/?p=543',0,'revision','',0),
(545,1,'2024-11-27 01:33:59','2024-11-27 01:33:59','','GuidoConstructionInc-(3)','','inherit','open','closed','','guidoconstructioninc-3','','','2024-11-27 01:33:59','2024-11-27 01:33:59','',0,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-3.jpg',0,'attachment','image/jpeg',0),
(546,1,'2024-11-27 01:34:00','2024-11-27 01:34:00','','GuidoConstructionInc-(8)','','inherit','open','closed','','guidoconstructioninc-8','','','2024-11-27 01:34:00','2024-11-27 01:34:00','',0,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-8.jpg',0,'attachment','image/jpeg',0),
(547,1,'2024-11-27 01:34:02','2024-11-27 01:34:02','','GuidoConstructionInc-(18)','','inherit','open','closed','','guidoconstructioninc-18','','','2024-11-27 01:34:02','2024-11-27 01:34:02','',0,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-18.jpg',0,'attachment','image/jpeg',0),
(548,1,'2024-11-27 01:34:03','2024-11-27 01:34:03','','GuidoConstructionInc-(20)','','inherit','open','closed','','guidoconstructioninc-20','','','2024-11-27 01:34:03','2024-11-27 01:34:03','',0,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-20.jpg',0,'attachment','image/jpeg',0),
(549,1,'2024-11-27 01:34:05','2024-11-27 01:34:05','','GuidoConstructionInc-(22)','','inherit','open','closed','','guidoconstructioninc-22','','','2024-11-27 01:34:05','2024-11-27 01:34:05','',0,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-22.jpg',0,'attachment','image/jpeg',0),
(550,1,'2024-11-27 01:34:07','2024-11-27 01:34:07','','GuidoConstructionInc-(30)','','inherit','open','closed','','guidoconstructioninc-30','','','2024-11-27 01:34:07','2024-11-27 01:34:07','',0,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-30.jpg',0,'attachment','image/jpeg',0),
(551,1,'2024-11-27 01:34:08','2024-11-27 01:34:08','','GuidoConstructionInc-(31)','','inherit','open','closed','','guidoconstructioninc-31','','','2024-11-27 01:34:08','2024-11-27 01:34:08','',0,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-31.jpg',0,'attachment','image/jpeg',0),
(552,1,'2024-11-27 01:34:09','2024-11-27 01:34:09','','GuidoConstructionInc-(45)','','inherit','open','closed','','guidoconstructioninc-45','','','2024-11-27 01:34:09','2024-11-27 01:34:09','',0,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-45.jpg',0,'attachment','image/jpeg',0),
(553,1,'2024-11-27 01:34:11','2024-11-27 01:34:11','','GuidoConstructionInc-(50)','','inherit','open','closed','','guidoconstructioninc-50','','','2024-11-27 01:34:11','2024-11-27 01:34:11','',0,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-50.jpg',0,'attachment','image/jpeg',0),
(554,1,'2024-11-27 01:34:13','2024-11-27 01:34:13','','GuidoConstructionInc-(53)','','inherit','open','closed','','guidoconstructioninc-53','','','2024-11-27 01:34:13','2024-11-27 01:34:13','',0,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-53.jpg',0,'attachment','image/jpeg',0),
(555,1,'2024-11-27 01:34:14','2024-11-27 01:34:14','','GuidoConstructionInc-(57)','','inherit','open','closed','','guidoconstructioninc-57','','','2024-11-27 01:34:14','2024-11-27 01:34:14','',0,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-57.jpg',0,'attachment','image/jpeg',0),
(556,1,'2024-11-27 01:34:16','2024-11-27 01:34:16','','GuidoConstructionInc-(60)','','inherit','open','closed','','guidoconstructioninc-60','','','2024-11-27 01:34:16','2024-11-27 01:34:16','',0,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-60.jpg',0,'attachment','image/jpeg',0),
(557,1,'2024-11-27 01:34:18','2024-11-27 01:34:18','','GuidoConstructionInc-(65)','','inherit','open','closed','','guidoconstructioninc-65','','','2024-11-27 01:34:18','2024-11-27 01:34:18','',0,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-65.jpg',0,'attachment','image/jpeg',0),
(558,1,'2024-11-27 01:34:19','2024-11-27 01:34:19','','GuidoConstructionInc-(72)','','inherit','open','closed','','guidoconstructioninc-72','','','2024-11-27 01:34:19','2024-11-27 01:34:19','',0,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-72.jpg',0,'attachment','image/jpeg',0),
(559,1,'2024-11-27 02:16:23','2024-11-27 02:16:23','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/4LfhzISHbWY\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text css_animation=\"fadeInRight\" css=\"\"]\r\n<h4 style=\"text-align: center;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution-oriented people, we can tackle any problem.</h4>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327,515\" img_size=\"650x432\" onclick=\"link_no\" autoplay=\"yes\" wrap=\"yes\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"DECORATIVE &amp; ARCHITECTURAL CONCRETE\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space][vc_video link=\"https://youtu.be/Z_llwHT1zU0?si=GoM4xWLu_0t3L_rJ\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673755834-f78becfd-610b-6\" include=\"572,573,566,567,568,569,570,571\"][vc_media_grid element_width=\"2\" css=\"\" grid_id=\"vc_gid:1732673755834-532830e8-77e3-6\" include=\"556,555,554,552,553,562\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673755835-c9277240-2910-3\" include=\"547,545,546,560\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673755835-08caed5d-b260-1\" include=\"549,548,550,551\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" css=\"\" grid_id=\"vc_gid:1732673755836-49c8dd57-7bf3-8\" include=\"558,557,561,562,563,564\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673755837-95b3d993-5a7f-8\" include=\"538,531,540,539,541,542\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673755837-a3147223-f475-1\" include=\"512,513,511,509,510,518\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673755837-cee946a8-5024-5\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1732673755837-e54c814d-d539-4\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673755837-06e33894-c92d-5\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1732673755838-8c9ccb09-95d1-10\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1732673755838-41d2bf17-face-2\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1732673755838-87315f2b-e8d3-3\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1732673755838-ed309ef1-4dc7-10\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-autosave-v1','','','2024-11-27 02:16:23','2024-11-27 02:16:23','',59,'https://guidoconstructioninc.com/?p=559',0,'revision','',0),
(560,1,'2024-11-27 01:44:19','2024-11-27 01:44:19','','GuidoConstructionInc-(12)','','inherit','open','closed','','guidoconstructioninc-12','','','2024-11-27 01:44:19','2024-11-27 01:44:19','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-12.jpg',0,'attachment','image/jpeg',0),
(561,1,'2024-11-27 01:49:06','2024-11-27 01:49:06','','GuidoConstructionInc-(69)','','inherit','open','closed','','guidoconstructioninc-69','','','2024-11-27 01:49:06','2024-11-27 01:49:06','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-69.jpg',0,'attachment','image/jpeg',0),
(562,1,'2024-11-27 01:49:23','2024-11-27 01:49:23','','GuidoConstructionInc-(62)','','inherit','open','closed','','guidoconstructioninc-62','','','2024-11-27 01:49:23','2024-11-27 01:49:23','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-62.jpg',0,'attachment','image/jpeg',0),
(563,1,'2024-11-27 01:49:25','2024-11-27 01:49:25','','GuidoConstructionInc-(70)','','inherit','open','closed','','guidoconstructioninc-70','','','2024-11-27 01:49:25','2024-11-27 01:49:25','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-70.jpg',0,'attachment','image/jpeg',0),
(564,1,'2024-11-27 01:49:58','2024-11-27 01:49:58','','GuidoConstructionInc-(67)','','inherit','open','closed','','guidoconstructioninc-67','','','2024-11-27 01:49:58','2024-11-27 01:49:58','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/GuidoConstructionInc-67.jpg',0,'attachment','image/jpeg',0),
(565,1,'2024-11-27 01:50:50','2024-11-27 01:50:50','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/4LfhzISHbWY\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3 style=\"text-align: center;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution-oriented people, we can tackle any problem.</h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327,515\" img_size=\"650x432\" onclick=\"link_no\" autoplay=\"yes\" wrap=\"yes\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text css_animation=\"fadeInRight\" css=\"\"]\r\n<h3 style=\"text-align: center;\">Decorative &amp; Architectural Concrete</h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_images_carousel images=\"551,550,549,548\" img_size=\"650x432\" onclick=\"link_no\" autoplay=\"yes\" wrap=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_images_carousel images=\"554,555,556,553,552\" img_size=\"650x432\" onclick=\"link_no\" autoplay=\"yes\" wrap=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_images_carousel images=\"547,545,546,560\" img_size=\"650x432\" onclick=\"link_no\" autoplay=\"yes\" wrap=\"yes\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" css=\"\" grid_id=\"vc_gid:1732671278545-a6d50a3e-5bdb-7\" include=\"558,557,553,561,562,563,564\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732671876604-2bf9b0c3-04f8-10\" include=\"538,531,540,539,541,542\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732671278545-b29393aa-60b4-10\" include=\"512,513,511,509,510,518\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732671278545-e9a39bd6-cc1e-9\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1732671278545-aa432e19-b5c4-4\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732671278545-aaee6a43-271e-10\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1732671278546-6a5b33bb-b141-6\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1732671278546-feee3dbd-4438-8\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1732671278546-72c9b616-7ad9-0\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1732671278546-82572203-ee32-5\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2024-11-27 01:50:50','2024-11-27 01:50:50','',59,'https://guidoconstructioninc.com/?p=565',0,'revision','',0),
(566,1,'2024-11-27 02:03:00','2024-11-27 02:03:00','','UCC-Compass---Guido-Construction-(55)','','inherit','open','closed','','ucc-compass-guido-construction-55','','','2024-11-27 02:03:00','2024-11-27 02:03:00','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/UCC-Compass-Guido-Construction-55.jpg',0,'attachment','image/jpeg',0),
(567,1,'2024-11-27 02:03:03','2024-11-27 02:03:03','','UCC-Compass---Guido-Construction-(106)','','inherit','open','closed','','ucc-compass-guido-construction-106','','','2024-11-27 02:03:03','2024-11-27 02:03:03','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/UCC-Compass-Guido-Construction-106.jpg',0,'attachment','image/jpeg',0),
(568,1,'2024-11-27 02:03:04','2024-11-27 02:03:04','','UCC-Compass---Guido-Construction-(153)','','inherit','open','closed','','ucc-compass-guido-construction-153','','','2024-11-27 02:03:04','2024-11-27 02:03:04','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/UCC-Compass-Guido-Construction-153.jpg',0,'attachment','image/jpeg',0),
(569,1,'2024-11-27 02:03:06','2024-11-27 02:03:06','','UCC-Compass---Guido-Construction-(155)','','inherit','open','closed','','ucc-compass-guido-construction-155','','','2024-11-27 02:03:06','2024-11-27 02:03:06','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/UCC-Compass-Guido-Construction-155.jpg',0,'attachment','image/jpeg',0),
(570,1,'2024-11-27 02:03:08','2024-11-27 02:03:08','','UCC-Compass---Guido-Construction-(159)','','inherit','open','closed','','ucc-compass-guido-construction-159','','','2024-11-27 02:03:08','2024-11-27 02:03:08','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/UCC-Compass-Guido-Construction-159.jpg',0,'attachment','image/jpeg',0),
(571,1,'2024-11-27 02:03:10','2024-11-27 02:03:10','','UCC-Compass---Guido-Construction-(167)','','inherit','open','closed','','ucc-compass-guido-construction-167','','','2024-11-27 02:03:10','2024-11-27 02:03:10','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/UCC-Compass-Guido-Construction-167.jpg',0,'attachment','image/jpeg',0),
(572,1,'2024-11-27 02:05:33','2024-11-27 02:05:33','','UCC-Compass---Guido-Construction-(151)','','inherit','open','closed','','ucc-compass-guido-construction-151','','','2024-11-27 02:05:33','2024-11-27 02:05:33','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/UCC-Compass-Guido-Construction-151.jpg',0,'attachment','image/jpeg',0),
(573,1,'2024-11-27 02:05:34','2024-11-27 02:05:34','','UCC-Compass---Guido-Construction-(152)','','inherit','open','closed','','ucc-compass-guido-construction-152','','','2024-11-27 02:05:34','2024-11-27 02:05:34','',59,'https://guidoconstructioninc.com/wp-content/uploads/2024/11/UCC-Compass-Guido-Construction-152.jpg',0,'attachment','image/jpeg',0),
(574,1,'2024-11-27 02:06:23','2024-11-27 02:06:23','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/4LfhzISHbWY\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3 style=\"text-align: center;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution-oriented people, we can tackle any problem.</h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327,515\" img_size=\"650x432\" onclick=\"link_no\" autoplay=\"yes\" wrap=\"yes\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text css_animation=\"fadeInRight\" css=\"\"]\r\n<h3 style=\"text-align: center;\">Decorative &amp; Architectural Concrete</h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732672399214-a7f092d4-636e-7\" include=\"572,573,566,567,568,569,570,571\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732672285779-49b4616a-7b2e-6\" include=\"547,545,546,560\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732672324629-032f9a3f-a190-7\" include=\"549,548,550,551\"][vc_media_grid element_width=\"2\" css=\"\" grid_id=\"vc_gid:1732672358819-7f672ea8-707d-2\" include=\"556,555,554,552,553,562\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" css=\"\" grid_id=\"vc_gid:1732672251671-a1badfa7-049e-1\" include=\"558,557,553,561,562,563,564\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732672251672-2501d358-d0a2-7\" include=\"538,531,540,539,541,542\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732672251672-df032664-09dd-7\" include=\"512,513,511,509,510,518\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732672251672-3f6c00a6-f1c1-3\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1732672251672-94a99329-5747-7\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732672251673-73b5c855-09df-5\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1732672251673-de3303f3-fecb-3\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1732672251673-ec8801a4-6412-6\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1732672251673-b779c4e5-d82d-6\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1732672251673-1f1abd4b-e4c6-4\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2024-11-27 02:06:23','2024-11-27 02:06:23','',59,'https://guidoconstructioninc.com/?p=574',0,'revision','',0),
(575,1,'2024-11-27 02:07:09','2024-11-27 02:07:09','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/4LfhzISHbWY\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3 style=\"text-align: center;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution-oriented people, we can tackle any problem.</h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327,515\" img_size=\"650x432\" onclick=\"link_no\" autoplay=\"yes\" wrap=\"yes\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"DECORATIVE &amp; ARCHITECTURAL CONCRETE\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673184445-784aac3f-9c4b-0\" include=\"572,573,566,567,568,569,570,571\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673184445-cd2ac501-14b7-3\" include=\"547,545,546,560\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673184446-dd4da977-3b86-0\" include=\"549,548,550,551\"][vc_media_grid element_width=\"2\" css=\"\" grid_id=\"vc_gid:1732673184446-c3ff1edd-ad1f-2\" include=\"556,555,554,552,553,562\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" css=\"\" grid_id=\"vc_gid:1732673184448-b4c60a74-35e7-0\" include=\"558,557,553,561,562,563,564\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673184448-477c0936-0814-8\" include=\"538,531,540,539,541,542\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673184448-8b52b0c9-be7c-6\" include=\"512,513,511,509,510,518\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673184448-3eeec99a-a2cb-8\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1732673184448-05539b1b-2208-8\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673184449-e9116985-4a2a-4\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1732673184449-a746b361-0b89-9\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1732673184449-19c3f248-0b85-2\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1732673184449-f388678b-1a02-0\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1732673184450-b81b1348-6920-2\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2024-11-27 02:07:09','2024-11-27 02:07:09','',59,'https://guidoconstructioninc.com/?p=575',0,'revision','',0),
(576,1,'2024-11-27 02:07:56','2024-11-27 02:07:56','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/4LfhzISHbWY\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3 style=\"text-align: center;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution-oriented people, we can tackle any problem.</h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327,515\" img_size=\"650x432\" onclick=\"link_no\" autoplay=\"yes\" wrap=\"yes\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"DECORATIVE &amp; ARCHITECTURAL CONCRETE\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673230829-4ed67a9c-c589-8\" include=\"572,573,566,567,568,569,570,571\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673230829-8bdfa8e7-8dc6-5\" include=\"547,545,546,560\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673230829-dd8508a1-9a03-8\" include=\"549,548,550,551\"][vc_media_grid element_width=\"2\" css=\"\" grid_id=\"vc_gid:1732673230830-8b202e4e-04c5-3\" include=\"556,555,554,552,553,562\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" css=\"\" grid_id=\"vc_gid:1732673230831-033c79ce-b9e6-2\" include=\"558,557,561,562,563,564\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673230831-ca2c2f4d-1f9c-8\" include=\"538,531,540,539,541,542\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673230832-fec515e7-18ee-10\" include=\"512,513,511,509,510,518\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673230832-825f21a4-4b61-8\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1732673230833-d82ef7d0-b729-2\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673230833-bab16922-7f90-1\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1732673230833-df148b00-4c04-6\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1732673230833-9cf2a743-3e48-1\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1732673230833-cf5163e6-4ab2-10\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1732673230833-50968eea-1e5a-2\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2024-11-27 02:07:56','2024-11-27 02:07:56','',59,'https://guidoconstructioninc.com/?p=576',0,'revision','',0),
(577,1,'2024-11-27 02:08:40','2024-11-27 02:08:40','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/4LfhzISHbWY\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<h3 style=\"text-align: center;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution-oriented people, we can tackle any problem.</h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327,515\" img_size=\"650x432\" onclick=\"link_no\" autoplay=\"yes\" wrap=\"yes\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"DECORATIVE &amp; ARCHITECTURAL CONCRETE\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_row_inner][vc_column_inner][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673277716-7f49dcbb-0f04-6\" include=\"572,573,566,567,568,569,570,571\"][vc_media_grid element_width=\"2\" css=\"\" grid_id=\"vc_gid:1732673277717-57bbf148-caeb-10\" include=\"556,555,554,552,553,562\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673277716-e65040d3-cb61-8\" include=\"547,545,546,560\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673277717-c71c3af4-6a18-9\" include=\"549,548,550,551\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" css=\"\" grid_id=\"vc_gid:1732673277718-03574711-1c1e-2\" include=\"558,557,561,562,563,564\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673277718-35ea8979-38a7-6\" include=\"538,531,540,539,541,542\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673277719-5d5061bb-7d16-3\" include=\"512,513,511,509,510,518\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673277719-fbd6b06d-61d0-0\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1732673277719-ea5ab123-3433-5\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673277720-d7e90a7d-81a5-9\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1732673277720-5394da72-9970-9\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1732673277720-6d7872e7-d582-6\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1732673277720-deaf2ca3-7da8-1\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1732673277720-6fbfadcc-9b72-8\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2024-11-27 02:08:40','2024-11-27 02:08:40','',59,'https://guidoconstructioninc.com/?p=577',0,'revision','',0),
(578,1,'2024-11-27 02:15:54','2024-11-27 02:15:54','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/4LfhzISHbWY\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text css_animation=\"fadeInRight\" css=\"\"]\r\n<h4 style=\"text-align: center;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution-oriented people, we can tackle any problem.</h4>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327,515\" img_size=\"650x432\" onclick=\"link_no\" autoplay=\"yes\" wrap=\"yes\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_custom_heading text=\"DECORATIVE &amp; ARCHITECTURAL CONCRETE\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_row_inner][vc_column_inner][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673695927-b83324e8-86e5-0\" include=\"572,573,566,567,568,569,570,571\"][vc_media_grid element_width=\"2\" css=\"\" grid_id=\"vc_gid:1732673695928-c9e243d7-9398-8\" include=\"556,555,554,552,553,562\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673695928-b354c9d5-aa5e-9\" include=\"547,545,546,560\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673695928-39bd4080-9ae8-1\" include=\"549,548,550,551\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/Z_llwHT1zU0?si=GoM4xWLu_0t3L_rJ\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" css=\"\" grid_id=\"vc_gid:1732673695930-5c95acd5-a9e8-9\" include=\"558,557,561,562,563,564\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673695930-c8dbb932-30fa-8\" include=\"538,531,540,539,541,542\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673695930-32a8504d-6477-6\" include=\"512,513,511,509,510,518\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673695930-1069cfea-8ee8-7\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1732673695930-20bf29e7-85a3-1\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673695931-751be1d9-a035-4\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1732673695931-9ec2222c-7516-9\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1732673695931-7c14f14f-d523-8\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1732673695931-3a6500ca-8db8-5\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1732673695932-db3586d8-cacc-8\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2024-11-27 02:15:54','2024-11-27 02:15:54','',59,'https://guidoconstructioninc.com/?p=578',0,'revision','',0),
(579,1,'2024-11-27 02:16:20','2024-11-27 02:16:20','[vc_row css=\".vc_custom_1634947336053{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_single_image image=\"359\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_border\" css_animation=\"fadeInUp\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO OUR PORTFOLIO\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/4LfhzISHbWY\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text css_animation=\"fadeInRight\" css=\"\"]\r\n<h4 style=\"text-align: center;\">Guido Construction is committed to delivering the highest caliber professional construction services. We are passionate about delivering driven solutions for quality results. As solution-oriented people, we can tackle any problem.</h4>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_images_carousel images=\"330,301,352,310,326,269,327,515\" img_size=\"650x432\" onclick=\"link_no\" autoplay=\"yes\" wrap=\"yes\" css_animation=\"fadeInUp\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"DECORATIVE &amp; ARCHITECTURAL CONCRETE\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space][vc_video link=\"https://youtu.be/Z_llwHT1zU0?si=GoM4xWLu_0t3L_rJ\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673755834-f78becfd-610b-6\" include=\"572,573,566,567,568,569,570,571\"][vc_media_grid element_width=\"2\" css=\"\" grid_id=\"vc_gid:1732673755834-532830e8-77e3-6\" include=\"556,555,554,552,553,562\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673755835-c9277240-2910-3\" include=\"547,545,546,560\"][vc_media_grid element_width=\"3\" css=\"\" grid_id=\"vc_gid:1732673755835-08caed5d-b260-1\" include=\"549,548,550,551\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#316fbc\" gradient_custom_color_2=\"#141a3c\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_video link=\"https://youtu.be/gGz8hIEEhqU\" align=\"center\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" alignment=\"right\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_custom_heading text=\"RECENT PROJECT GALLERY\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_empty_space][vc_single_image image=\"172\" img_size=\"full\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" css=\"\" grid_id=\"vc_gid:1732673755836-49c8dd57-7bf3-8\" include=\"558,557,561,562,563,564\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673755837-95b3d993-5a7f-8\" include=\"538,531,540,539,541,542\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673755837-a3147223-f475-1\" include=\"512,513,511,509,510,518\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673755837-cee946a8-5024-5\" include=\"301,443,304,305,306,307\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1732673755837-e54c814d-d539-4\" include=\"267,266,265,378\"][vc_media_grid element_width=\"2\" grid_id=\"vc_gid:1732673755837-06e33894-c92d-5\" include=\"359,352,358,360,365,364\"][vc_media_grid grid_id=\"vc_gid:1732673755838-8c9ccb09-95d1-10\" include=\"269,263,268\"][vc_media_grid element_width=\"3\" gap=\"10\" grid_id=\"vc_gid:1732673755838-41d2bf17-face-2\" include=\"102,101,99,95,94,92,91,93\"][vc_media_grid grid_id=\"vc_gid:1732673755838-87315f2b-e8d3-3\" include=\"310,309,308\"][vc_media_grid grid_id=\"vc_gid:1732673755838-ed309ef1-4dc7-10\" include=\"457,458,468\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space][vc_single_image image=\"51\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"FROM START TO FINISH\r\nOR ANYWHERE IN BETWEEN,\r\nWE CAN HELP WITH YOUR NEXT PROJECT!\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Portfolio','','inherit','closed','closed','','59-revision-v1','','','2024-11-27 02:16:20','2024-11-27 02:16:20','',59,'https://guidoconstructioninc.com/?p=579',0,'revision','',0),
(581,1,'2025-01-07 23:33:39','2025-01-07 23:33:39','','DBE Large','','inherit','open','closed','','dbe-large','','','2025-01-07 23:33:39','2025-01-07 23:33:39','',0,'https://guidoconstructioninc.com/wp-content/uploads/2025/01/DBE-Large.png',0,'attachment','image/png',0),
(582,1,'2025-01-07 23:33:42','2025-01-07 23:33:42','','MBE Large','','inherit','open','closed','','mbe-large','','','2025-01-07 23:33:42','2025-01-07 23:33:42','',0,'https://guidoconstructioninc.com/wp-content/uploads/2025/01/MBE-Large.png',0,'attachment','image/png',0),
(583,1,'2025-01-07 23:33:44','2025-01-07 23:33:44','','WBE Large','','inherit','open','closed','','wbe-large','','','2025-01-07 23:33:44','2025-01-07 23:33:44','',0,'https://guidoconstructioninc.com/wp-content/uploads/2025/01/WBE-Large.png',0,'attachment','image/png',0),
(584,1,'2025-01-07 23:35:40','2025-01-07 23:35:40','','DBE Small','','inherit','open','closed','','dbe-small','','','2025-01-07 23:35:40','2025-01-07 23:35:40','',41,'https://guidoconstructioninc.com/wp-content/uploads/2025/01/DBE-Small.png',0,'attachment','image/png',0),
(585,1,'2025-01-07 23:35:42','2025-01-07 23:35:42','','MBE Small','','inherit','open','closed','','mbe-small','','','2025-01-07 23:35:42','2025-01-07 23:35:42','',41,'https://guidoconstructioninc.com/wp-content/uploads/2025/01/MBE-Small.png',0,'attachment','image/png',0),
(586,1,'2025-01-07 23:35:43','2025-01-07 23:35:43','','WBE Small','','inherit','open','closed','','wbe-small','','','2025-01-07 23:35:43','2025-01-07 23:35:43','',41,'https://guidoconstructioninc.com/wp-content/uploads/2025/01/WBE-Small.png',0,'attachment','image/png',0),
(587,1,'2025-01-07 23:36:15','2025-01-07 23:36:15','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_media_grid css=\"\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1736292831713-eb679d85-1b70-9\" include=\"584,585,586\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"blue\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"blue\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" css=\".vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" offset=\"vc_hidden-sm vc_hidden-xs\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1736292844522-8c588d29-a8c3-4\" include=\"531,359,378\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInLeft\" link=\"http://guidoconstructioninc.com/portfolio\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInUp\" link=\"http://guidoconstructioninc.com/services\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInRight\" link=\"http://guidoconstructioninc.com/about-us\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1736292831715-3f7be5a2-fe56-10\" include=\"267,266,271,265\"][vc_empty_space][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2025-01-07 23:36:15','2025-01-07 23:36:15','',41,'https://guidoconstructioninc.com/?p=587',0,'revision','',0),
(588,1,'2025-01-07 23:36:56','2025-01-07 23:36:56','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"blue\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"blue\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" css=\".vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" offset=\"vc_hidden-sm vc_hidden-xs\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_media_grid css=\"\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1736292976641-807fea3a-6132-7\" include=\"584,585,586\"][/vc_column_inner][vc_column_inner width=\"1/4\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1736292976641-47932be8-2103-5\" include=\"531,359,378\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInLeft\" link=\"http://guidoconstructioninc.com/portfolio\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInUp\" link=\"http://guidoconstructioninc.com/services\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInRight\" link=\"http://guidoconstructioninc.com/about-us\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1736292976643-2a3f2cc8-ab00-7\" include=\"267,266,271,265\"][vc_empty_space][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2025-01-07 23:36:56','2025-01-07 23:36:56','',41,'https://guidoconstructioninc.com/?p=588',0,'revision','',0),
(589,1,'2025-01-07 23:37:33','2025-01-07 23:37:33','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"blue\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"blue\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" css=\".vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" offset=\"vc_hidden-sm vc_hidden-xs\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_media_grid item=\"basicGrid_NoAnimation\" css=\"\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1736293017924-46e6c723-1bc6-9\" include=\"584,585,586\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1736293017925-6f510969-612c-3\" include=\"531,359,378\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInLeft\" link=\"http://guidoconstructioninc.com/portfolio\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInUp\" link=\"http://guidoconstructioninc.com/services\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInRight\" link=\"http://guidoconstructioninc.com/about-us\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1736293017927-7049696d-c852-5\" include=\"267,266,271,265\"][vc_empty_space][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2025-01-07 23:37:33','2025-01-07 23:37:33','',41,'https://guidoconstructioninc.com/?p=589',0,'revision','',0),
(590,1,'2025-01-07 23:39:55','2025-01-07 23:39:55','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"337\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"blue\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"blue\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" css=\".vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" offset=\"vc_hidden-sm vc_hidden-xs\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1736293079338-b8debf21-dcae-7\" include=\"583,582,581\"][vc_empty_space][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1736293054438-d83aa827-143f-4\" include=\"531,359,378\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInLeft\" link=\"http://guidoconstructioninc.com/portfolio\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInUp\" link=\"http://guidoconstructioninc.com/services\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInRight\" link=\"http://guidoconstructioninc.com/about-us\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1736293054440-996bcd54-1f43-0\" include=\"267,266,271,265\"][vc_empty_space][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2025-01-07 23:39:55','2025-01-07 23:39:55','',41,'https://guidoconstructioninc.com/?p=590',0,'revision','',0),
(591,1,'2025-01-07 23:40:53','2025-01-07 23:40:53','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1736293225140-fdbb3b17-047e-0\" include=\"583,582,581\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was born and raised locally in Roseburg and has over 37 years of building experience. His grandparents, Frank and Nina Guido, created many businesses including Umpqua Sand and Gravel - Concrete Service. Darby learned his work ethic, living and working on the Guido Ranch. Immersed from an early age in the culture of business and working.\r\n\r\nIn 1986, Darby began his career in business with Cradar Enterprises “Craig &amp; Darby” with Steve &amp; Peggy Guido. For the next 15 years, learning to build with Cradar helped Darby develop his management experience in Building and Concrete Construction. By 2000, Darby Guido purchased Mel Gregory’s equipment “his mentor in concrete”. With the support of family businesses in Construction, created a sole proprietorship “Darby Guido Construction”.\r\n\r\nFor 8 years, Darby Guido Construction experienced growth and a success in the concrete industry, by completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company became incorporated in 2008 to Guido Construction Inc. In order to reflect the business growth with a long legacy in mind. Dorena Guido Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children are developing there professional roles within the business, with generational work ethics.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"269\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. Dorena values her heritage and is an active member of the Citizen Band of the Potawatomi Tribe. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking her secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business and taking after his forefathers, construction and concrete are a passion and a way of life for Darby. In addition to being the Operations Manager for Guido Construction Inc. and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, time on his jet ski, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1736293203930-17677bfd-ac9b-10\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2025-01-07 23:40:53','2025-01-07 23:40:53','',60,'https://guidoconstructioninc.com/?p=591',0,'revision','',0),
(592,1,'2025-01-07 23:41:29','2025-01-07 23:41:29','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1736293254303-28e8cd26-e126-2\" include=\"583,582,581\"][vc_empty_space height=\"40px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was born and raised locally in Roseburg and has over 37 years of building experience. His grandparents, Frank and Nina Guido, created many businesses including Umpqua Sand and Gravel - Concrete Service. Darby learned his work ethic, living and working on the Guido Ranch. Immersed from an early age in the culture of business and working.\r\n\r\nIn 1986, Darby began his career in business with Cradar Enterprises “Craig &amp; Darby” with Steve &amp; Peggy Guido. For the next 15 years, learning to build with Cradar helped Darby develop his management experience in Building and Concrete Construction. By 2000, Darby Guido purchased Mel Gregory’s equipment “his mentor in concrete”. With the support of family businesses in Construction, created a sole proprietorship “Darby Guido Construction”.\r\n\r\nFor 8 years, Darby Guido Construction experienced growth and a success in the concrete industry, by completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company became incorporated in 2008 to Guido Construction Inc. In order to reflect the business growth with a long legacy in mind. Dorena Guido Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children are developing there professional roles within the business, with generational work ethics.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"269\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. Dorena values her heritage and is an active member of the Citizen Band of the Potawatomi Tribe. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking her secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business and taking after his forefathers, construction and concrete are a passion and a way of life for Darby. In addition to being the Operations Manager for Guido Construction Inc. and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, time on his jet ski, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1736293254308-cc9e6b96-34cf-3\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2025-01-07 23:41:29','2025-01-07 23:41:29','',60,'https://guidoconstructioninc.com/?p=592',0,'revision','',0),
(593,1,'2025-01-07 23:42:05','2025-01-07 23:42:05','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1736293291182-bd15cec1-8771-9\" include=\"583,582,581\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"40px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was born and raised locally in Roseburg and has over 37 years of building experience. His grandparents, Frank and Nina Guido, created many businesses including Umpqua Sand and Gravel - Concrete Service. Darby learned his work ethic, living and working on the Guido Ranch. Immersed from an early age in the culture of business and working.\r\n\r\nIn 1986, Darby began his career in business with Cradar Enterprises “Craig &amp; Darby” with Steve &amp; Peggy Guido. For the next 15 years, learning to build with Cradar helped Darby develop his management experience in Building and Concrete Construction. By 2000, Darby Guido purchased Mel Gregory’s equipment “his mentor in concrete”. With the support of family businesses in Construction, created a sole proprietorship “Darby Guido Construction”.\r\n\r\nFor 8 years, Darby Guido Construction experienced growth and a success in the concrete industry, by completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company became incorporated in 2008 to Guido Construction Inc. In order to reflect the business growth with a long legacy in mind. Dorena Guido Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children are developing there professional roles within the business, with generational work ethics.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"269\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet The Owners\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. Dorena values her heritage and is an active member of the Citizen Band of the Potawatomi Tribe. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking her secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business and taking after his forefathers, construction and concrete are a passion and a way of life for Darby. In addition to being the Operations Manager for Guido Construction Inc. and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, time on his jet ski, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1736293291185-a1ca4747-193b-8\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2025-01-07 23:42:05','2025-01-07 23:42:05','',60,'https://guidoconstructioninc.com/?p=593',0,'revision','',0),
(595,1,'2025-03-19 17:03:58','2025-03-19 17:03:58','','Douglas-Ave--tear-up-concrete---concrete-cutting-Guido-Construction-Inc-(92)','','inherit','open','closed','','douglas-ave-tear-up-concrete-concrete-cutting-guido-construction-inc-92','','','2025-03-19 17:03:58','2025-03-19 17:03:58','',0,'https://guidoconstructioninc.com/wp-content/uploads/2025/03/Douglas-Ave-tear-up-concrete-concrete-cutting-Guido-Construction-Inc-92.jpg',0,'attachment','image/jpeg',0),
(596,1,'2025-03-19 17:04:00','2025-03-19 17:04:00','','Douglas-Ave-ada-sidewalk--Guido-Construction-Inc-(23)','','inherit','open','closed','','douglas-ave-ada-sidewalk-guido-construction-inc-23','','','2025-03-19 17:04:00','2025-03-19 17:04:00','',0,'https://guidoconstructioninc.com/wp-content/uploads/2025/03/Douglas-Ave-ada-sidewalk-Guido-Construction-Inc-23.jpg',0,'attachment','image/jpeg',0),
(597,1,'2025-03-19 17:04:03','2025-03-19 17:04:03','','Douglas-Ave---Guido-Construction-Inc-(64)','','inherit','open','closed','','douglas-ave-guido-construction-inc-64','','','2025-03-19 17:04:03','2025-03-19 17:04:03','',0,'https://guidoconstructioninc.com/wp-content/uploads/2025/03/Douglas-Ave-Guido-Construction-Inc-64.jpg',0,'attachment','image/jpeg',0),
(598,1,'2025-03-19 17:10:28','2025-03-19 17:10:28','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1742404055555-9f9ffdcc-4249-9\" include=\"583,582,581\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"40px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was born and raised locally in Roseburg and has over 37 years of building experience. His grandparents, Frank and Nina Guido, created many businesses including Umpqua Sand and Gravel - Concrete Service. Darby learned his work ethic, living and working on the Guido Ranch. Immersed from an early age in the culture of business and working.\r\n\r\nIn 1986, Darby began his career in business with Cradar Enterprises “Craig &amp; Darby” with Steve &amp; Peggy Guido. For the next 15 years, learning to build with Cradar helped Darby develop his management experience in Building and Concrete Construction. By 2000, Darby Guido purchased Mel Gregory’s equipment “his mentor in concrete”. With the support of family businesses in Construction, created a sole proprietorship “Darby Guido Construction”.\r\n\r\nFor 8 years, Darby Guido Construction experienced growth and a success in the concrete industry, by completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company became incorporated in 2008 to Guido Construction Inc. In order to reflect the business growth with a long legacy in mind. Dorena Guido Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children are developing there professional roles within the business, with generational work ethics.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"269\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"President &amp; CEO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text]Dorena is the leader of our pack at Guido Construction, Inc. She takes pride in running an innovative and local, women-owned construction business. Dorena values her heritage and is an active member of the Citizen Band of the Potawatomi Tribe. In addition to being CEO, Dorena loves to spend time on the water with friends and family, baking her secret family recipes, playing fetch with her pups, and sipping wine with her girlfriends at local wineries.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Construction Manager &amp; COO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text]Darby eats, sleeps, and breathes concrete. Being raised in the business and taking after his forefathers, construction and concrete are a passion and a way of life for Darby. In addition to being the Operations Manager for Guido Construction Inc. and keeping multiple crews and jobsites running smoothing, Darby enjoys family vacations, time on his jet ski, movie nights with his granddaughter, and fishing the North Umpqua River.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1742404055559-a7e6eb8a-3231-7\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2025-03-19 17:10:28','2025-03-19 17:10:28','',60,'https://guidoconstructioninc.com/?p=598',0,'revision','',0),
(599,1,'2025-03-21 01:35:25','2025-03-21 01:35:25','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1742520874320-7e7fad05-8740-9\" include=\"583,582,581\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"40px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was born and raised locally in Roseburg and has over 37 years of building experience. His grandparents, Frank and Nina Guido, created many businesses including Umpqua Sand and Gravel - Concrete Service. Darby learned his work ethic, living and working on the Guido Ranch. Immersed from an early age in the culture of business and working.\r\n\r\nIn 1986, Darby began his career in business with Cradar Enterprises “Craig &amp; Darby” with Steve &amp; Peggy Guido. For the next 15 years, learning to build with Cradar helped Darby develop his management experience in Building and Concrete Construction. By 2000, Darby Guido purchased Mel Gregory’s equipment “his mentor in concrete”. With the support of family businesses in Construction, created a sole proprietorship “Darby Guido Construction”.\r\n\r\nFor 8 years, Darby Guido Construction experienced growth and a success in the concrete industry, by completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company became incorporated in 2008 to Guido Construction Inc. In order to reflect the business growth with a long legacy in mind. Dorena Guido Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children are developing there professional roles within the business, with generational work ethics.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"269\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"335\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"President &amp; CEO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text css=\"\"]Dorena is the esteemed leader at Guido Construction Inc. She takes great pride in her construction business, paving the way for women in the industry. Dorena highly values her heritage as a Tribal member of the Citizen Potawatomi Nation. In addition to being CEO, Dorena loves to spend time at the lake with her family and friends, playing fetch with her pups, and traveling.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Construction Manager &amp; COO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text css=\"\"]Darby is dedicated to the construction and concrete industry. Having grown up in the business and following in the footsteps of his forefathers, Darby views construction and concrete as both a passion and a vocation. Darby manages operations at Guido Construction Inc., overseeing crews and projects. In addition to playing with rocks, Darby enjoys family vacations, lake time, movie nights with his granddaughter, and gardening.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1742520874323-001d9b50-0170-5\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2025-03-21 01:35:25','2025-03-21 01:35:25','',60,'https://guidoconstructioninc.com/?p=599',0,'revision','',0),
(601,1,'2025-08-22 17:22:44','2025-08-22 17:22:44','[vc_row css=\".vc_custom_1756929966404{background-color: #FFFFFF !important;}\"][vc_column css=\".vc_custom_1756929980182{background-color: #FFFFFF !important;}\"][vc_empty_space height=\"60px\"][smartslider3 slider=\"4\"][vc_row_inner css=\".vc_custom_1756929954726{background-color: #FFFFFF !important;}\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1758667201739-b753ffdb-5eb7-2\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, Inc., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_wp_custommenu nav_menu=\"16\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','private','closed','closed','','vanguard-ada-systems','','','2025-09-23 22:41:11','2025-09-23 22:41:11','',0,'https://guidoconstructioninc.com/?page_id=601',0,'page','',0),
(602,1,'2025-08-22 17:20:28','2025-08-22 17:20:28','','Truncated domes','','inherit','open','closed','','truncated-domes','','','2025-08-22 17:20:28','2025-08-22 17:20:28','',601,'https://guidoconstructioninc.com/wp-content/uploads/2025/08/Truncated-domes.jpeg',0,'attachment','image/jpeg',0),
(603,1,'2025-08-22 17:22:44','2025-08-22 17:22:44','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Making Oregon Accessible\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"602\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"primary\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:%20https%3A%2F%2Fvanguardonline.com%2F%20_blank|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" css=\"\"][vc_empty_space height=\"10px\"][vc_column_text css=\"\"]These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars \"Guidestrips\", and Trapezoid/ Raised Surface Indicators:\r\n<div class=\"fusion-li-item-content\">Superior visibility</div>\r\n<div class=\"fusion-li-item-content\">Multiple Colors Available<img class=\" lazyloaded\" src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" alt=\"/wp-content/uploads/2014/11/colors-available2.jpg\" data-orig-src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" /></div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nBetter adhesion / continuous installation; no screws, bolts or pins, <b>ever</b>)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nCosts less to install\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nInstalls on granite, concrete, asphalt, steel or wood\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nLower maintenance cost\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nHigh Visibility\r\n\r\nMaintains original skid resistance\r\n\r\n<strong>Nonskid</strong> (not “<em>slip resistant</em>“)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\n\r\nLiquid plastic, made on site, follows <strong><em>every</em> </strong>contour\r\n\r\nPerfect for new construction <em><strong>or</strong> </em>retrofit\r\n\r\n5 year replacement warranty\r\n\r\nInstallation requirements: Clean and dry, weather permitting\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nContinuous installation! No seams (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nNo caulking needed (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nStronger than the surface applied to.\r\n\r\nTraffic ready in 90 minutes.\r\n\r\n</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 17:22:44','2025-08-22 17:22:44','',601,'https://guidoconstructioninc.com/?p=603',0,'revision','',0),
(605,1,'2025-08-22 17:27:30','2025-08-22 17:27:30','','vanguard-domes-side-view','','inherit','open','closed','','vanguard-domes-side-view','','','2025-08-22 17:27:30','2025-08-22 17:27:30','',601,'https://guidoconstructioninc.com/wp-content/uploads/2025/08/vanguard-domes-side-view.jpg',0,'attachment','image/jpeg',0),
(606,1,'2025-08-22 17:32:17','2025-08-22 17:32:17','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_custom_heading text=\"Making Oregon Accessible\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755883399332-98c00cee-5331-2\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\nVanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"602\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"primary\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:%20https%3A%2F%2Fvanguardonline.com%2F%20_blank|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" css=\"\"][vc_empty_space height=\"10px\"][vc_column_text css=\"\"]These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars \"Guidestrips\", and Trapezoid/ Raised Surface Indicators:\r\n<div class=\"fusion-li-item-content\">Superior visibility</div>\r\n<div class=\"fusion-li-item-content\">Multiple Colors Available<img class=\" lazyloaded\" src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" alt=\"/wp-content/uploads/2014/11/colors-available2.jpg\" data-orig-src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" /></div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nBetter adhesion / continuous installation; no screws, bolts or pins, <b>ever</b>)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nCosts less to install\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nInstalls on granite, concrete, asphalt, steel or wood\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nLower maintenance cost\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nHigh Visibility\r\n\r\nMaintains original skid resistance\r\n\r\n<strong>Nonskid</strong> (not “<em>slip resistant</em>“)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\n\r\nLiquid plastic, made on site, follows <strong><em>every</em> </strong>contour\r\n\r\nPerfect for new construction <em><strong>or</strong> </em>retrofit\r\n\r\n5 year replacement warranty\r\n\r\nInstallation requirements: Clean and dry, weather permitting\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nContinuous installation! No seams (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nNo caulking needed (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nStronger than the surface applied to.\r\n\r\nTraffic ready in 90 minutes.\r\n\r\n</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 17:32:17','2025-08-22 17:32:17','',601,'https://guidoconstructioninc.com/?p=606',0,'revision','',0),
(607,1,'2025-08-22 17:33:32','2025-08-22 17:33:32','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Making Oregon Accessible\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755883938829-7f2a828e-7870-6\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\nVanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.[/vc_column_text][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">Here at Oregon Access Markings, we use the best material guaranteed to outlast our competition.</h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"602\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"primary\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:%20https%3A%2F%2Fvanguardonline.com%2F%20_blank|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" css=\"\"][vc_empty_space height=\"10px\"][vc_column_text css=\"\"]These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars \"Guidestrips\", and Trapezoid/ Raised Surface Indicators:\r\n<div class=\"fusion-li-item-content\">Superior visibility</div>\r\n<div class=\"fusion-li-item-content\">Multiple Colors Available<img class=\" lazyloaded\" src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" alt=\"/wp-content/uploads/2014/11/colors-available2.jpg\" data-orig-src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" /></div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nBetter adhesion / continuous installation; no screws, bolts or pins, <b>ever</b>)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nCosts less to install\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nInstalls on granite, concrete, asphalt, steel or wood\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nLower maintenance cost\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nHigh Visibility\r\n\r\nMaintains original skid resistance\r\n\r\n<strong>Nonskid</strong> (not “<em>slip resistant</em>“)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\n\r\nLiquid plastic, made on site, follows <strong><em>every</em> </strong>contour\r\n\r\nPerfect for new construction <em><strong>or</strong> </em>retrofit\r\n\r\n5 year replacement warranty\r\n\r\nInstallation requirements: Clean and dry, weather permitting\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nContinuous installation! No seams (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nNo caulking needed (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nStronger than the surface applied to.\r\n\r\nTraffic ready in 90 minutes.\r\n\r\n</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 17:33:32','2025-08-22 17:33:32','',601,'https://guidoconstructioninc.com/?p=607',0,'revision','',0),
(608,1,'2025-08-22 17:34:06','2025-08-22 17:34:06','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Making Oregon Accessible\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755884014123-a7739c03-2650-9\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\nVanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.[/vc_column_text][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">Here at Oregon Access Markings, we use the best material guaranteed to outlast our competition.</h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884043718{background-color: #062947 !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"602\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"primary\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:%20https%3A%2F%2Fvanguardonline.com%2F%20_blank|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" css=\"\"][vc_empty_space height=\"10px\"][vc_column_text css=\"\"]These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars \"Guidestrips\", and Trapezoid/ Raised Surface Indicators:\r\n<div class=\"fusion-li-item-content\">Superior visibility</div>\r\n<div class=\"fusion-li-item-content\">Multiple Colors Available<img class=\" lazyloaded\" src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" alt=\"/wp-content/uploads/2014/11/colors-available2.jpg\" data-orig-src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" /></div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nBetter adhesion / continuous installation; no screws, bolts or pins, <b>ever</b>)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nCosts less to install\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nInstalls on granite, concrete, asphalt, steel or wood\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nLower maintenance cost\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nHigh Visibility\r\n\r\nMaintains original skid resistance\r\n\r\n<strong>Nonskid</strong> (not “<em>slip resistant</em>“)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\n\r\nLiquid plastic, made on site, follows <strong><em>every</em> </strong>contour\r\n\r\nPerfect for new construction <em><strong>or</strong> </em>retrofit\r\n\r\n5 year replacement warranty\r\n\r\nInstallation requirements: Clean and dry, weather permitting\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nContinuous installation! No seams (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nNo caulking needed (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nStronger than the surface applied to.\r\n\r\nTraffic ready in 90 minutes.\r\n\r\n</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 17:34:06','2025-08-22 17:34:06','',601,'https://guidoconstructioninc.com/?p=608',0,'revision','',0),
(609,1,'2025-08-22 17:36:43','2025-08-22 17:36:43','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Making Oregon Accessible\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755884057300-28da0552-9f39-1\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\nVanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.[/vc_column_text][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">Here at Oregon Access Markings, we use the best material guaranteed to outlast our competition.</h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884043718{background-color: #062947 !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"602\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"primary\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:%20https%3A%2F%2Fvanguardonline.com%2F%20_blank|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_column_text css=\"\"]These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars \"Guidestrips\", and Trapezoid/ Raised Surface Indicators:\r\n<div class=\"fusion-li-item-content\">Superior visibility</div>\r\n<div class=\"fusion-li-item-content\">Multiple Colors Available<img class=\" lazyloaded\" src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" alt=\"/wp-content/uploads/2014/11/colors-available2.jpg\" data-orig-src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" /></div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nBetter adhesion / continuous installation; no screws, bolts or pins, <b>ever</b>)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nCosts less to install\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nInstalls on granite, concrete, asphalt, steel or wood\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nLower maintenance cost\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nHigh Visibility\r\n\r\nMaintains original skid resistance\r\n\r\n<strong>Nonskid</strong> (not “<em>slip resistant</em>“)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\n\r\nLiquid plastic, made on site, follows <strong><em>every</em> </strong>contour\r\n\r\nPerfect for new construction <em><strong>or</strong> </em>retrofit\r\n\r\n5 year replacement warranty\r\n\r\nInstallation requirements: Clean and dry, weather permitting\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nContinuous installation! No seams (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nNo caulking needed (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nStronger than the surface applied to.\r\n\r\nTraffic ready in 90 minutes.\r\n\r\n</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 17:36:43','2025-08-22 17:36:43','',601,'https://guidoconstructioninc.com/?p=609',0,'revision','',0),
(610,1,'2025-08-22 17:38:56','2025-08-22 17:38:56','','Vanguard-ada-systems-oregon-roseburg-partner','','inherit','open','closed','','vanguard-ada-systems-oregon-roseburg-partner','','','2025-08-22 17:38:56','2025-08-22 17:38:56','',601,'https://guidoconstructioninc.com/wp-content/uploads/2025/08/Vanguard-ada-systems-oregon-roseburg-partner.jpg',0,'attachment','image/jpeg',0),
(611,1,'2025-08-22 17:44:15','2025-08-22 17:44:15','','guidestrip-colors-options','','inherit','open','closed','','guidestrip-colors-options','','','2025-08-22 17:44:15','2025-08-22 17:44:15','',601,'https://guidoconstructioninc.com/wp-content/uploads/2025/08/guidestrip-colors-options.jpg',0,'attachment','image/jpeg',0),
(612,1,'2025-08-22 17:45:06','2025-08-22 17:45:06','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Making Oregon Accessible\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755884204864-e1b09f97-057f-8\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\nVanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.[/vc_column_text][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">Here at Oregon Access Markings, we use the best material guaranteed to outlast our competition.</h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884043718{background-color: #062947 !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"602\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"primary\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:%20https%3A%2F%2Fvanguardonline.com%2F%20_blank|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_column_text css=\"\"]These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars \"Guidestrips\", and Trapezoid/ Raised Surface Indicators:\r\n<div class=\"fusion-li-item-content\">Superior visibility</div>\r\n<div class=\"fusion-li-item-content\">Multiple Colors Available<img class=\" lazyloaded\" src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" alt=\"/wp-content/uploads/2014/11/colors-available2.jpg\" data-orig-src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" /></div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nBetter adhesion / continuous installation; no screws, bolts or pins, <b>ever</b>)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nCosts less to install\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nInstalls on granite, concrete, asphalt, steel or wood\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nLower maintenance cost\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nHigh Visibility\r\n\r\nMaintains original skid resistance\r\n\r\n<strong>Nonskid</strong> (not “<em>slip resistant</em>“)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\n\r\nLiquid plastic, made on site, follows <strong><em>every</em> </strong>contour\r\n\r\nPerfect for new construction <em><strong>or</strong> </em>retrofit\r\n\r\n5 year replacement warranty\r\n\r\nInstallation requirements: Clean and dry, weather permitting\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nContinuous installation! No seams (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nNo caulking needed (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nStronger than the surface applied to.\r\n\r\nTraffic ready in 90 minutes.\r\n\r\n</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"30px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 17:45:06','2025-08-22 17:45:06','',601,'https://guidoconstructioninc.com/?p=612',0,'revision','',0),
(613,1,'2025-08-22 17:45:28','2025-08-22 17:45:28','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Making Oregon Accessible\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755884708021-76ae71ab-cdd2-7\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\nVanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.[/vc_column_text][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">Here at Oregon Access Markings, we use the best material guaranteed to outlast our competition.</h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884043718{background-color: #062947 !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"602\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_column_text css=\"\"]These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars \"Guidestrips\", and Trapezoid/ Raised Surface Indicators:\r\n<div class=\"fusion-li-item-content\">Superior visibility</div>\r\n<div class=\"fusion-li-item-content\">Multiple Colors Available<img class=\" lazyloaded\" src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" alt=\"/wp-content/uploads/2014/11/colors-available2.jpg\" data-orig-src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" /></div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nBetter adhesion / continuous installation; no screws, bolts or pins, <b>ever</b>)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nCosts less to install\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nInstalls on granite, concrete, asphalt, steel or wood\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nLower maintenance cost\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nHigh Visibility\r\n\r\nMaintains original skid resistance\r\n\r\n<strong>Nonskid</strong> (not “<em>slip resistant</em>“)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\n\r\nLiquid plastic, made on site, follows <strong><em>every</em> </strong>contour\r\n\r\nPerfect for new construction <em><strong>or</strong> </em>retrofit\r\n\r\n5 year replacement warranty\r\n\r\nInstallation requirements: Clean and dry, weather permitting\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nContinuous installation! No seams (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nNo caulking needed (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nStronger than the surface applied to.\r\n\r\nTraffic ready in 90 minutes.\r\n\r\n</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"30px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 17:45:28','2025-08-22 17:45:28','',601,'https://guidoconstructioninc.com/?p=613',0,'revision','',0),
(615,1,'2025-08-22 17:51:36','2025-08-22 17:51:36','','guidestrip-truncated-domes-railway','','inherit','open','closed','','guidestrip-truncated-domes-railway','','','2025-08-22 17:51:36','2025-08-22 17:51:36','',601,'https://guidoconstructioninc.com/wp-content/uploads/2025/08/guidestrip-truncated-domes-railway.jpg',0,'attachment','image/jpeg',0),
(616,1,'2025-08-22 17:53:30','2025-08-22 17:53:30','','vanguard-trapezoid-tactile-warning-delineator','','inherit','open','closed','','vanguard-trapezoid-tactile-warning-delineator','','','2025-08-22 17:53:30','2025-08-22 17:53:30','',601,'https://guidoconstructioninc.com/wp-content/uploads/2025/08/vanguard-trapezoid-tactile-warning-delineator.jpg',0,'attachment','image/jpeg',0),
(617,1,'2025-08-22 17:54:02','2025-08-22 17:54:02','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Making Oregon Accessible\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755884729529-8b6d4db2-8f86-0\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\nVanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.[/vc_column_text][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">Here at Oregon Access Markings, we use the best material guaranteed to outlast our competition.</h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884043718{background-color: #062947 !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"602\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_column_text css=\"\"]These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars \"Guidestrips\", and Trapezoid/ Raised Surface Indicators:\r\n<div class=\"fusion-li-item-content\">Superior visibility</div>\r\n<div class=\"fusion-li-item-content\">Multiple Colors Available<img class=\" lazyloaded\" src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" alt=\"/wp-content/uploads/2014/11/colors-available2.jpg\" data-orig-src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" /></div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nBetter adhesion / continuous installation; no screws, bolts or pins, <b>ever</b>)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nCosts less to install\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nInstalls on granite, concrete, asphalt, steel or wood\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nLower maintenance cost\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nHigh Visibility\r\n\r\nMaintains original skid resistance\r\n\r\n<strong>Nonskid</strong> (not “<em>slip resistant</em>“)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\n\r\nLiquid plastic, made on site, follows <strong><em>every</em> </strong>contour\r\n\r\nPerfect for new construction <em><strong>or</strong> </em>retrofit\r\n\r\n5 year replacement warranty\r\n\r\nInstallation requirements: Clean and dry, weather permitting\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nContinuous installation! No seams (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nNo caulking needed (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nStronger than the surface applied to.\r\n\r\nTraffic ready in 90 minutes.\r\n\r\n</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 17:54:02','2025-08-22 17:54:02','',601,'https://guidoconstructioninc.com/?p=617',0,'revision','',0),
(618,1,'2025-08-22 17:57:08','2025-08-22 17:57:08','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Making Oregon Accessible\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755885252030-a8ee042a-3972-5\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\nVanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.[/vc_column_text][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">Here at Oregon Access Markings, we use the best material guaranteed to outlast our competition.</h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884043718{background-color: #062947 !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_column_text css=\"\"]These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars \"Guidestrips\", and Trapezoid/ Raised Surface Indicators:\r\n<div class=\"fusion-li-item-content\">Superior visibility</div>\r\n<div class=\"fusion-li-item-content\">Multiple Colors Available<img class=\" lazyloaded\" src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" alt=\"/wp-content/uploads/2014/11/colors-available2.jpg\" data-orig-src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" /></div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nBetter adhesion / continuous installation; no screws, bolts or pins, <b>ever</b>)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nCosts less to install\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nInstalls on granite, concrete, asphalt, steel or wood\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nLower maintenance cost\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nHigh Visibility\r\n\r\nMaintains original skid resistance\r\n\r\n<strong>Nonskid</strong> (not “<em>slip resistant</em>“)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\n\r\nLiquid plastic, made on site, follows <strong><em>every</em> </strong>contour\r\n\r\nPerfect for new construction <em><strong>or</strong> </em>retrofit\r\n\r\n5 year replacement warranty\r\n\r\nInstallation requirements: Clean and dry, weather permitting\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nContinuous installation! No seams (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nNo caulking needed (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nStronger than the surface applied to.\r\n\r\nTraffic ready in 90 minutes.\r\n\r\n</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 17:57:08','2025-08-22 17:57:08','',601,'https://guidoconstructioninc.com/?p=618',0,'revision','',0),
(619,1,'2025-08-22 17:58:02','2025-08-22 17:58:02','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Making Oregon Accessible\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755885430575-17a0401d-f79b-9\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\nVanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.[/vc_column_text][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">Here at Guido Construction, INC., we use the best material guaranteed to outlast our competition.</h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884043718{background-color: #062947 !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_column_text css=\"\"]These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars \"Guidestrips\", and Trapezoid/ Raised Surface Indicators:\r\n<div class=\"fusion-li-item-content\">Superior visibility</div>\r\n<div class=\"fusion-li-item-content\">Multiple Colors Available<img class=\" lazyloaded\" src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" alt=\"/wp-content/uploads/2014/11/colors-available2.jpg\" data-orig-src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" /></div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nBetter adhesion / continuous installation; no screws, bolts or pins, <b>ever</b>)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nCosts less to install\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nInstalls on granite, concrete, asphalt, steel or wood\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nLower maintenance cost\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nHigh Visibility\r\n\r\nMaintains original skid resistance\r\n\r\n<strong>Nonskid</strong> (not “<em>slip resistant</em>“)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\n\r\nLiquid plastic, made on site, follows <strong><em>every</em> </strong>contour\r\n\r\nPerfect for new construction <em><strong>or</strong> </em>retrofit\r\n\r\n5 year replacement warranty\r\n\r\nInstallation requirements: Clean and dry, weather permitting\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nContinuous installation! No seams (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nNo caulking needed (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nStronger than the surface applied to.\r\n\r\nTraffic ready in 90 minutes.\r\n\r\n</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 17:58:02','2025-08-22 17:58:02','',601,'https://guidoconstructioninc.com/?p=619',0,'revision','',0),
(620,1,'2025-08-22 18:00:29','2025-08-22 18:00:29','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755885483909-74364e4f-30c6-10\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">Here at Guido Construction, INC., we use the best material guaranteed to outlast our competition.</h5>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884043718{background-color: #062947 !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_column_text css=\"\"]These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars \"Guidestrips\", and Trapezoid/ Raised Surface Indicators:\r\n<div class=\"fusion-li-item-content\">Superior visibility</div>\r\n<div class=\"fusion-li-item-content\">Multiple Colors Available<img class=\" lazyloaded\" src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" alt=\"/wp-content/uploads/2014/11/colors-available2.jpg\" data-orig-src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" /></div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nBetter adhesion / continuous installation; no screws, bolts or pins, <b>ever</b>)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nCosts less to install\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nInstalls on granite, concrete, asphalt, steel or wood\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nLower maintenance cost\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nHigh Visibility\r\n\r\nMaintains original skid resistance\r\n\r\n<strong>Nonskid</strong> (not “<em>slip resistant</em>“)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\n\r\nLiquid plastic, made on site, follows <strong><em>every</em> </strong>contour\r\n\r\nPerfect for new construction <em><strong>or</strong> </em>retrofit\r\n\r\n5 year replacement warranty\r\n\r\nInstallation requirements: Clean and dry, weather permitting\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nContinuous installation! No seams (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nNo caulking needed (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nStronger than the surface applied to.\r\n\r\nTraffic ready in 90 minutes.\r\n\r\n</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 18:00:29','2025-08-22 18:00:29','',601,'https://guidoconstructioninc.com/?p=620',0,'revision','',0),
(621,1,'2025-08-22 18:01:30','2025-08-22 18:01:30','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755885630987-6d9c5c81-9f5e-8\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<h3 style=\"text-align: center;\">Here at Guido Construction, INC., we use the best material guaranteed to outlast our competition.</h3>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884043718{background-color: #062947 !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_column_text css=\"\"]These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars \"Guidestrips\", and Trapezoid/ Raised Surface Indicators:\r\n<div class=\"fusion-li-item-content\">Superior visibility</div>\r\n<div class=\"fusion-li-item-content\">Multiple Colors Available<img class=\" lazyloaded\" src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" alt=\"/wp-content/uploads/2014/11/colors-available2.jpg\" data-orig-src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" /></div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nBetter adhesion / continuous installation; no screws, bolts or pins, <b>ever</b>)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nCosts less to install\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nInstalls on granite, concrete, asphalt, steel or wood\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nLower maintenance cost\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nHigh Visibility\r\n\r\nMaintains original skid resistance\r\n\r\n<strong>Nonskid</strong> (not “<em>slip resistant</em>“)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\n\r\nLiquid plastic, made on site, follows <strong><em>every</em> </strong>contour\r\n\r\nPerfect for new construction <em><strong>or</strong> </em>retrofit\r\n\r\n5 year replacement warranty\r\n\r\nInstallation requirements: Clean and dry, weather permitting\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nContinuous installation! No seams (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nNo caulking needed (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nStronger than the surface applied to.\r\n\r\nTraffic ready in 90 minutes.\r\n\r\n</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 18:01:30','2025-08-22 18:01:30','',601,'https://guidoconstructioninc.com/?p=621',0,'revision','',0),
(622,1,'2025-08-22 18:03:55','2025-08-22 18:03:55','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755885692047-cd80ce91-12cf-2\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, INC., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h5|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884043718{background-color: #062947 !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_column_text css=\"\"]These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars \"Guidestrips\", and Trapezoid/ Raised Surface Indicators:\r\n<div class=\"fusion-li-item-content\">Superior visibility</div>\r\n<div class=\"fusion-li-item-content\">Multiple Colors Available<img class=\" lazyloaded\" src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" alt=\"/wp-content/uploads/2014/11/colors-available2.jpg\" data-orig-src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" /></div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nBetter adhesion / continuous installation; no screws, bolts or pins, <b>ever</b>)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nCosts less to install\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nInstalls on granite, concrete, asphalt, steel or wood\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nLower maintenance cost\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nHigh Visibility\r\n\r\nMaintains original skid resistance\r\n\r\n<strong>Nonskid</strong> (not “<em>slip resistant</em>“)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\n\r\nLiquid plastic, made on site, follows <strong><em>every</em> </strong>contour\r\n\r\nPerfect for new construction <em><strong>or</strong> </em>retrofit\r\n\r\n5 year replacement warranty\r\n\r\nInstallation requirements: Clean and dry, weather permitting\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nContinuous installation! No seams (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nNo caulking needed (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nStronger than the surface applied to.\r\n\r\nTraffic ready in 90 minutes.\r\n\r\n</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 18:03:55','2025-08-22 18:03:55','',601,'https://guidoconstructioninc.com/?p=622',0,'revision','',0),
(623,1,'2025-08-22 18:12:43','2025-08-22 18:12:43','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755886014460-991c71ed-6acf-9\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, INC., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_column_text css=\"\"]These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars \"Guidestrips\", and Trapezoid/ Raised Surface Indicators:\r\n<div class=\"fusion-li-item-content\">Superior visibility</div>\r\n<div class=\"fusion-li-item-content\">Multiple Colors Available<img class=\" lazyloaded\" src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" alt=\"/wp-content/uploads/2014/11/colors-available2.jpg\" data-orig-src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" /></div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nBetter adhesion / continuous installation; no screws, bolts or pins, <b>ever</b>)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nCosts less to install\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nInstalls on granite, concrete, asphalt, steel or wood\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nLower maintenance cost\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nHigh Visibility\r\n\r\nMaintains original skid resistance\r\n\r\n<strong>Nonskid</strong> (not “<em>slip resistant</em>“)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\n\r\nLiquid plastic, made on site, follows <strong><em>every</em> </strong>contour\r\n\r\nPerfect for new construction <em><strong>or</strong> </em>retrofit\r\n\r\n5 year replacement warranty\r\n\r\nInstallation requirements: Clean and dry, weather permitting\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nContinuous installation! No seams (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nNo caulking needed (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nStronger than the surface applied to.\r\n\r\nTraffic ready in 90 minutes.\r\n\r\n</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 18:12:43','2025-08-22 18:12:43','',601,'https://guidoconstructioninc.com/?p=623',0,'revision','',0),
(624,1,'2025-08-22 18:15:15','2025-08-22 18:15:15','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755886365683-b2533a30-b71e-4\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, INC., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_column_text css=\"\" el_class=\" p { color: #FFFFFF; }\"]These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars \"Guidestrips\", and Trapezoid/ Raised Surface Indicators:\r\n<div class=\"fusion-li-item-content\">Superior visibility</div>\r\n<div class=\"fusion-li-item-content\">Multiple Colors Available<img class=\" lazyloaded\" src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" alt=\"/wp-content/uploads/2014/11/colors-available2.jpg\" data-orig-src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" /></div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nBetter adhesion / continuous installation; no screws, bolts or pins, <b>ever</b>)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nCosts less to install\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nInstalls on granite, concrete, asphalt, steel or wood\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nLower maintenance cost\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nHigh Visibility\r\n\r\nMaintains original skid resistance\r\n\r\n<strong>Nonskid</strong> (not “<em>slip resistant</em>“)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\n\r\nLiquid plastic, made on site, follows <strong><em>every</em> </strong>contour\r\n\r\nPerfect for new construction <em><strong>or</strong> </em>retrofit\r\n\r\n5 year replacement warranty\r\n\r\nInstallation requirements: Clean and dry, weather permitting\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nContinuous installation! No seams (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nNo caulking needed (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nStronger than the surface applied to.\r\n\r\nTraffic ready in 90 minutes.\r\n\r\n</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 18:15:15','2025-08-22 18:15:15','',601,'https://guidoconstructioninc.com/?p=624',0,'revision','',0),
(625,1,'2025-08-22 18:16:40','2025-08-22 18:16:40','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755886516775-5013f059-506c-3\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, INC., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\n\r\nSuperior visibility\r\nMultiple Colors Available\r\n\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever)\r\n\r\nCosts less to install\r\n\r\nInstalls on granite, concrete, asphalt, steel or wood\r\n\r\nLower maintenance cost\r\n\r\nHigh Visibility\r\n\r\nMaintains original skid resistance\r\n\r\nNonskid (not “slip resistant“)\r\n\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\n\r\nLiquid plastic, made on site, follows every contour\r\n\r\nPerfect for new construction or retrofit\r\n\r\n5 year replacement warranty\r\n\r\nInstallation requirements: Clean and dry, weather permitting\r\n\r\nContinuous installation! No seams (EVER).\r\n\r\nNo caulking needed (EVER).\r\n\r\nStronger than the surface applied to.\r\n\r\nTraffic ready in 90 minutes.\" font_container=\"tag:p|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 18:16:40','2025-08-22 18:16:40','',601,'https://guidoconstructioninc.com/?p=625',0,'revision','',0),
(626,1,'2025-08-22 18:20:11','2025-08-22 18:20:11','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755886601921-b3fee62c-1e4e-4\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, INC., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_column_text css=\".vc_custom_1755886808110{background-color: #FFFFFF !important;}\"]These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars \"Guidestrips\", and Trapezoid/ Raised Surface Indicators:\r\n<div class=\"fusion-li-item-content\">Superior visibility</div>\r\n<div class=\"fusion-li-item-content\">Multiple Colors Available<img class=\" lazyloaded\" src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" alt=\"/wp-content/uploads/2014/11/colors-available2.jpg\" data-orig-src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" /></div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nBetter adhesion / continuous installation; no screws, bolts or pins, <b>ever</b>)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nCosts less to install\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nInstalls on granite, concrete, asphalt, steel or wood\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nLower maintenance cost\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nHigh Visibility\r\n\r\nMaintains original skid resistance\r\n\r\n<strong>Nonskid</strong> (not “<em>slip resistant</em>“)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\n\r\nLiquid plastic, made on site, follows <strong><em>every</em> </strong>contour\r\n\r\nPerfect for new construction <em><strong>or</strong> </em>retrofit\r\n\r\n5 year replacement warranty\r\n\r\nInstallation requirements: Clean and dry, weather permitting\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nContinuous installation! No seams (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nNo caulking needed (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nStronger than the surface applied to.\r\n\r\nTraffic ready in 90 minutes.\r\n\r\n</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 18:20:11','2025-08-22 18:20:11','',601,'https://guidoconstructioninc.com/?p=626',0,'revision','',0),
(627,1,'2025-08-22 18:23:09','2025-08-22 18:23:09','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755886813328-0ec2213a-472a-10\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, INC., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_column_text css=\".vc_custom_1755886864385{background-color: #FFFFFF00 !important;}\"]These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars \"Guidestrips\", and Trapezoid/ Raised Surface Indicators:\r\n<div class=\"fusion-li-item-content\">Superior visibility</div>\r\n<div class=\"fusion-li-item-content\">Multiple Colors Available<img class=\" lazyloaded\" src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" alt=\"/wp-content/uploads/2014/11/colors-available2.jpg\" data-orig-src=\"https://vanguardonline.com/wp-content/uploads/2014/11/colors-available2.jpg\" /></div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nBetter adhesion / continuous installation; no screws, bolts or pins, <b>ever</b>)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nCosts less to install\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nInstalls on granite, concrete, asphalt, steel or wood\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nLower maintenance cost\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nHigh Visibility\r\n\r\nMaintains original skid resistance\r\n\r\n<strong>Nonskid</strong> (not “<em>slip resistant</em>“)\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\n\r\nLiquid plastic, made on site, follows <strong><em>every</em> </strong>contour\r\n\r\nPerfect for new construction <em><strong>or</strong> </em>retrofit\r\n\r\n5 year replacement warranty\r\n\r\nInstallation requirements: Clean and dry, weather permitting\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nContinuous installation! No seams (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nNo caulking needed (EVER).\r\n\r\n</div>\r\n<div class=\"fusion-li-item-content\">\r\n\r\nStronger than the surface applied to.\r\n\r\nTraffic ready in 90 minutes.\r\n\r\n</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 18:23:09','2025-08-22 18:23:09','',601,'https://guidoconstructioninc.com/?p=627',0,'revision','',0),
(628,1,'2025-08-22 18:23:44','2025-08-22 18:23:44','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755886991639-750f52df-8662-9\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, INC., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 18:23:44','2025-08-22 18:23:44','',601,'https://guidoconstructioninc.com/?p=628',0,'revision','',0),
(629,1,'2025-08-22 18:24:15','2025-08-22 18:24:15','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"20px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755887026248-bddfe7c9-582b-9\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, INC., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 18:24:15','2025-08-22 18:24:15','',601,'https://guidoconstructioninc.com/?p=629',0,'revision','',0),
(630,1,'2025-08-22 18:25:14','2025-08-22 18:25:14','[vc_row][vc_column][smartslider3][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755887056882-c921906a-088d-10\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, INC., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 18:25:14','2025-08-22 18:25:14','',601,'https://guidoconstructioninc.com/?p=630',0,'revision','',0),
(631,1,'2025-08-22 18:32:28','2025-08-22 18:32:28','','IMG_9868','','inherit','open','closed','','img_9868','','','2025-08-22 18:32:28','2025-08-22 18:32:28','',0,'https://guidoconstructioninc.com/wp-content/uploads/2025/08/IMG_9868.jpg',0,'attachment','image/jpeg',0),
(632,1,'2025-08-22 18:35:50','2025-08-22 18:35:50','','Douglas-Ave-Guido-Construction-Inc-23-e1748552974511','','inherit','open','closed','','douglas-ave-guido-construction-inc-23-e1748552974511','','','2025-08-22 18:35:50','2025-08-22 18:35:50','',0,'https://guidoconstructioninc.com/wp-content/uploads/2025/08/Douglas-Ave-Guido-Construction-Inc-23-e1748552974511.jpg',0,'attachment','image/jpeg',0),
(633,1,'2025-08-22 18:41:21','2025-08-22 18:41:21','','Asset-2','','inherit','open','closed','','asset-2','','','2025-08-22 18:41:21','2025-08-22 18:41:21','',0,'https://guidoconstructioninc.com/wp-content/uploads/2025/08/Asset-2.png',0,'attachment','image/png',0),
(634,1,'2025-08-22 18:41:36','2025-08-22 18:41:36','','Asset-3','','inherit','open','closed','','asset-3','','','2025-08-22 18:41:36','2025-08-22 18:41:36','',0,'https://guidoconstructioninc.com/wp-content/uploads/2025/08/Asset-3.png',0,'attachment','image/png',0),
(635,1,'2025-08-22 18:42:52','2025-08-22 18:42:52','[vc_row][vc_column][smartslider3 slider=\"4\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755888162478-6a327769-1078-10\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, INC., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 18:42:52','2025-08-22 18:42:52','',601,'https://guidoconstructioninc.com/?p=635',0,'revision','',0),
(636,1,'2025-08-22 18:44:26','2025-08-22 18:44:26','<p>[vc_row][vc_column][smartslider3 slider=\"4\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]</p>\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755888204965-222526ed0637028fc623ecbca65e9eb9-0\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]</p>\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, INC., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:<br />\nSuperior visibility<br />\nMultiple Colors Available<br />\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.<br />\nCosts less to install.<br />\nInstalls on granite, concrete, asphalt, steel or wood.<br />\nLower maintenance cost.<br />\nHigh Visibility<br />\nMaintains original skid resistance.<br />\nNonskid (not “slip resistant“)<br />\n“Zero clearance”, no “trip hazards” (no seams!)<br />\nLiquid plastic, made on site, follows every contour<br />\nPerfect for new construction or retrofit<br />\n5 year replacement warranty<br />\nInstallation requirements: Clean and dry, weather permitting<br />\nContinuous installation! No seams (EVER).<br />\nNo caulking needed (EVER).<br />\nStronger than the surface applied to.<br />\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes<br />\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips<br />\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips<br />\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\n','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 18:44:26','2025-08-22 18:44:26','',601,'https://guidoconstructioninc.com/?p=636',0,'revision','',0),
(637,1,'2025-08-22 18:44:45','2025-08-22 18:44:45','[vc_row][vc_column][smartslider3 slider=\"4\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755888204965-222526ed0637028fc623ecbca65e9eb9-0\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, INC., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 18:44:45','2025-08-22 18:44:45','',601,'https://guidoconstructioninc.com/?p=637',0,'revision','',0),
(641,1,'2025-08-22 18:50:57','2025-08-22 18:50:57','[vc_row][vc_column][vc_empty_space height=\"60px\"][smartslider3 slider=\"4\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1755888610648-34fb8865-eb12-2\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, INC., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-22 18:50:57','2025-08-22 18:50:57','',601,'https://guidoconstructioninc.com/?p=641',0,'revision','',0),
(645,1,'2025-08-28 20:22:27','2025-08-28 20:22:27','[vc_row][vc_column][vc_empty_space height=\"60px\"][smartslider3 slider=\"4\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1756412389709-d0c580ec-fbe6-8\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, INC., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-28 20:22:27','2025-08-28 20:22:27','',601,'https://guidoconstructioninc.com/?p=645',0,'revision','',0),
(646,1,'2025-08-28 20:54:17','2025-08-28 20:54:17','[vc_row][vc_column][vc_empty_space height=\"60px\"][smartslider3 slider=\"4\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1756412572080-35c3c147-c329-9\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, Inc., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-28 20:54:17','2025-08-28 20:54:17','',601,'https://guidoconstructioninc.com/?p=646',0,'revision','',0),
(647,1,'2025-08-28 21:05:16','2025-08-28 21:05:16','[vc_row][vc_column][vc_empty_space height=\"60px\"][smartslider3 slider=\"4\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1756414978748-7d6260aa-82d4-5\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, Inc., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_single_image image=\"334\" img_size=\"large\" css=\"\"][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-28 21:05:16','2025-08-28 21:05:16','',601,'https://guidoconstructioninc.com/?p=647',0,'revision','',0),
(648,1,'2025-08-28 21:24:58','2025-08-28 21:24:58','[vc_row][vc_column][vc_empty_space height=\"60px\"][smartslider3 slider=\"4\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1756415118913-0a18a16b-f074-8\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, Inc., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-08-28 21:24:58','2025-08-28 21:24:58','',601,'https://guidoconstructioninc.com/?p=648',0,'revision','',0),
(651,1,'2025-09-03 20:06:21','2025-09-03 20:06:21','[vc_row css=\".vc_custom_1756929966404{background-color: #FFFFFF !important;}\"][vc_column css=\".vc_custom_1756929980182{background-color: #FFFFFF !important;}\"][vc_wp_custommenu nav_menu=\"16\"][vc_empty_space height=\"60px\"][smartslider3 slider=\"4\"][vc_row_inner css=\".vc_custom_1756929954726{background-color: #FFFFFF !important;}\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1756929734137-d271c708-a959-2\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, Inc., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_wp_custommenu nav_menu=\"16\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-09-03 20:06:21','2025-09-03 20:06:21','',601,'https://guidoconstructioninc.com/?p=651',0,'revision','',0),
(652,1,'2025-09-03 20:07:13','2025-09-03 20:07:13','[vc_row css=\".vc_custom_1756929966404{background-color: #FFFFFF !important;}\"][vc_column css=\".vc_custom_1756929980182{background-color: #FFFFFF !important;}\"][vc_empty_space height=\"60px\"][smartslider3 slider=\"4\"][vc_row_inner css=\".vc_custom_1756929954726{background-color: #FFFFFF !important;}\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1756929986676-8a69692b-40d5-0\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, Inc., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_wp_custommenu nav_menu=\"16\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-09-03 20:07:13','2025-09-03 20:07:13','',601,'https://guidoconstructioninc.com/?p=652',0,'revision','',0),
(653,1,'2025-09-03 20:09:20','2025-09-03 20:09:20','[vc_row css=\".vc_custom_1756930162763{background-color: #FFFFFF !important;}\"][vc_column][vc_wp_custommenu nav_menu=\"16\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1756930136895{background-color: #FFFFFF !important;}\"][vc_column css=\".vc_custom_1756929980182{background-color: #FFFFFF !important;}\"][vc_empty_space height=\"60px\"][smartslider3 slider=\"4\"][vc_row_inner css=\".vc_custom_1756929954726{background-color: #FFFFFF !important;}\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1756930039332-36d120a9-8af0-5\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, Inc., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_wp_custommenu nav_menu=\"16\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-09-03 20:09:20','2025-09-03 20:09:20','',601,'https://guidoconstructioninc.com/?p=653',0,'revision','',0),
(654,1,'2025-09-03 20:10:24','2025-09-03 20:10:24','[vc_row css=\".vc_custom_1756929966404{background-color: #FFFFFF !important;}\"][vc_column css=\".vc_custom_1756929980182{background-color: #FFFFFF !important;}\"][vc_wp_custommenu nav_menu=\"16\"][vc_empty_space height=\"60px\"][smartslider3 slider=\"4\"][vc_row_inner css=\".vc_custom_1756929954726{background-color: #FFFFFF !important;}\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1756929734137-d271c708-a959-2\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, Inc., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_wp_custommenu nav_menu=\"16\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-09-03 20:10:24','2025-09-03 20:10:24','',601,'https://guidoconstructioninc.com/?p=654',0,'revision','',0),
(655,1,'2025-09-03 20:11:08','2025-09-03 20:11:08','[vc_row css=\".vc_custom_1756929966404{background-color: #FFFFFF !important;}\"][vc_column css=\".vc_custom_1756929980182{background-color: #FFFFFF !important;}\"][vc_empty_space height=\"60px\"][smartslider3 slider=\"4\"][vc_row_inner css=\".vc_custom_1756929954726{background-color: #FFFFFF !important;}\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1756930252955-97df15fb-be6f-8\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, Inc., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_wp_custommenu nav_menu=\"16\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-09-03 20:11:08','2025-09-03 20:11:08','',601,'https://guidoconstructioninc.com/?p=655',0,'revision','',0),
(656,1,'2025-09-03 20:12:49','2025-09-03 20:12:49','<p>[vc_row css=\".vc_custom_1756929966404{background-color: #FFFFFF !important;}\"][vc_column css=\".vc_custom_1756929980182{background-color: #FFFFFF !important;}\"][vc_empty_space height=\"60px\"][smartslider3 slider=\"4\"][vc_row_inner css=\".vc_custom_1756929954726{background-color: #FFFFFF !important;}\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]</p>\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1756930280580-3d93b3119b11e19644e7f75d492d184b-8\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]</p>\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, Inc., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:<br />\nSuperior visibility<br />\nMultiple Colors Available<br />\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.<br />\nCosts less to install.<br />\nInstalls on granite, concrete, asphalt, steel or wood.<br />\nLower maintenance cost.<br />\nHigh Visibility<br />\nMaintains original skid resistance.<br />\nNonskid (not “slip resistant“)<br />\n“Zero clearance”, no “trip hazards” (no seams!)<br />\nLiquid plastic, made on site, follows every contour<br />\nPerfect for new construction or retrofit<br />\n5 year replacement warranty<br />\nInstallation requirements: Clean and dry, weather permitting<br />\nContinuous installation! No seams (EVER).<br />\nNo caulking needed (EVER).<br />\nStronger than the surface applied to.<br />\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes<br />\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips<br />\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips<br />\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_wp_custommenu nav_menu=\"16\"][/vc_column][/vc_row]</p>\n','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-09-03 20:12:49','2025-09-03 20:12:49','',601,'https://guidoconstructioninc.com/?p=656',0,'revision','',0),
(657,1,'2025-09-03 20:13:46','2025-09-03 20:13:46','[vc_row][vc_column][vc_empty_space height=\"60px\"][smartslider3 slider=\"4\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1756415118913-0a18a16b-f074-8\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, Inc., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-09-03 20:13:46','2025-09-03 20:13:46','',601,'https://guidoconstructioninc.com/?p=657',0,'revision','',0),
(658,1,'2025-09-03 20:22:33','2025-09-03 20:22:33','<p>[vc_row css=\".vc_custom_1756929966404{background-color: #FFFFFF !important;}\"][vc_column css=\".vc_custom_1756929980182{background-color: #FFFFFF !important;}\"][vc_empty_space height=\"60px\"][smartslider3 slider=\"4\"][vc_row_inner css=\".vc_custom_1756929954726{background-color: #FFFFFF !important;}\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]</p>\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1756930451498-3d93b3119b11e19644e7f75d492d184b-1\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]</p>\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\n<p>[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, Inc., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:<br />\nSuperior visibility<br />\nMultiple Colors Available<br />\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.<br />\nCosts less to install.<br />\nInstalls on granite, concrete, asphalt, steel or wood.<br />\nLower maintenance cost.<br />\nHigh Visibility<br />\nMaintains original skid resistance.<br />\nNonskid (not “slip resistant“)<br />\n“Zero clearance”, no “trip hazards” (no seams!)<br />\nLiquid plastic, made on site, follows every contour<br />\nPerfect for new construction or retrofit<br />\n5 year replacement warranty<br />\nInstallation requirements: Clean and dry, weather permitting<br />\nContinuous installation! No seams (EVER).<br />\nNo caulking needed (EVER).<br />\nStronger than the surface applied to.<br />\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes<br />\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips<br />\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips<br />\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_wp_custommenu nav_menu=\"16\"][/vc_column][/vc_row]</p>\n','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-09-03 20:22:33','2025-09-03 20:22:33','',601,'https://guidoconstructioninc.com/?p=658',0,'revision','',0),
(659,1,'2025-09-03 20:22:52','2025-09-03 20:22:52','[vc_row css=\".vc_custom_1756929966404{background-color: #FFFFFF !important;}\"][vc_column css=\".vc_custom_1756929980182{background-color: #FFFFFF !important;}\"][vc_empty_space height=\"60px\"][smartslider3 slider=\"4\"][vc_row_inner css=\".vc_custom_1756929954726{background-color: #FFFFFF !important;}\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1756930451498-3d93b3119b11e19644e7f75d492d184b-1\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, Inc., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_wp_custommenu nav_menu=\"16\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-09-03 20:22:52','2025-09-03 20:22:52','',601,'https://guidoconstructioninc.com/?p=659',0,'revision','',0),
(661,1,'2025-09-03 20:25:30','2025-09-03 20:25:30','.page-id-601#logo{\n    display:none;\n}','lambert','','inherit','closed','closed','','475-revision-v1','','','2025-09-03 20:25:30','2025-09-03 20:25:30','',475,'https://guidoconstructioninc.com/?p=661',0,'revision','',0),
(662,1,'2025-09-23 22:40:04','2025-09-23 22:40:04','[vc_row css=\".vc_custom_1756929966404{background-color: #FFFFFF !important;}\"][vc_column css=\".vc_custom_1756929980182{background-color: #FFFFFF !important;}\"][vc_empty_space height=\"60px\"][smartslider3 slider=\"4\"][vc_row_inner css=\".vc_custom_1756929954726{background-color: #FFFFFF !important;}\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1756930451498-3d93b3119b11e19644e7f75d492d184b-1\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, Inc., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column][vc_wp_custommenu nav_menu=\"16\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-autosave-v1','','','2025-09-23 22:40:04','2025-09-23 22:40:04','',601,'https://guidoconstructioninc.com/?p=662',0,'revision','',0),
(663,1,'2025-09-03 22:15:27','2025-09-03 22:15:27','','DM Serif Text','','publish','closed','closed','','dm-serif-text','','','2025-09-03 22:15:27','2025-09-03 22:15:27','',0,'https://guidoconstructioninc.com/?bsf_custom_fonts=dm-serif-text',0,'bsf_custom_fonts','',0),
(665,1,'2025-09-23 22:40:51','2025-09-23 22:40:51','[vc_row css=\".vc_custom_1756929966404{background-color: #FFFFFF !important;}\"][vc_column css=\".vc_custom_1756929980182{background-color: #FFFFFF !important;}\"][vc_empty_space height=\"60px\"][smartslider3 slider=\"4\"][vc_row_inner css=\".vc_custom_1756929954726{background-color: #FFFFFF !important;}\"][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Making Oregon Accessible\" font_container=\"tag:h2|text_align:center|color:%23062374\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_column_text css=\"\"]\r\n<h5 style=\"text-align: center;\">One Project At A Time</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_masonry_media_grid element_width=\"6\" css=\"\" grid_id=\"vc_gid:1758667201739-b753ffdb-5eb7-2\" include=\"516,513\"][vc_empty_space height=\"30px\"][vc_single_image image=\"605\" img_size=\"full\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"Trusted Experts in ADA Compliance Solutions\" font_container=\"tag:h1|text_align:center|color:%23DD9933\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][vc_column_text css=\"\"]\r\n<p data-start=\"123\" data-end=\"660\">We specialize in the expert installation of Vanguard surface-applied Tactile Walking Surface Indicators (TWSI) — including Detectable Warning Surfaces (DWS), Tactile Directional Indicators (TDI), Tactile Warning Delineators (TWD) — as well as EcoPath coatings for bus and bike lanes, and SkidGuard anti-slip treatments. All of our products are liquid-applied and custom-fabricated on-site to meet the specific needs and conditions of each location. Our solutions are suitable for both new construction and retrofitting existing surfaces.</p>\r\n<p data-start=\"662\" data-end=\"870\">Navigating ADA requirements can be complex. When you partner with us, you receive not only industry-leading products but also the assurance of a final installation that is fully compliant with ADA standards.</p>\r\n<p data-start=\"872\" data-end=\"1116\">As a small, family-owned business, we pride ourselves on personalized service. You’ll work directly with the owner, who also leads every installation, ensuring flexibility, responsiveness, and an unwavering commitment to quality on every project.</p>\r\n<p style=\"text-align: left;\">Vanguard ADA Systems are liquid applied, nonskid, and attach to every micron of a concrete or asphalt surface. This can be applied to existing concrete or asphalt allowing for a quick and simple retrofit.</p>\r\n[/vc_column_text][vc_empty_space height=\"60px\"][vc_custom_heading text=\"Here at Guido Construction, Inc., we use the best material guaranteed to outlast our competition.\" font_container=\"tag:h3|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1755886218429{background-color: #062947 !important;}\"][vc_column width=\"1/6\" css=\".vc_custom_1755886240355{background-color: #062947 !important;}\"][/vc_column][vc_column width=\"2/3\"][vc_row_inner][vc_column_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Why We Are The Best At What We Do\" font_container=\"tag:h2|text_align:center|color:%2373B1E8\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"These are the reasons why our products and application process are superior for Detectable Warning/Tactile Walking Surface Indicators (TWSI), Tactile Direction Indicators (TDI)/ Raised Surface Guide Bars ``Guidestrips``, and Trapezoid/ Raised Surface Indicators:\r\nSuperior visibility\r\nMultiple Colors Available\r\nBetter adhesion / continuous installation; no screws, bolts or pins, ever.\r\nCosts less to install.\r\nInstalls on granite, concrete, asphalt, steel or wood.\r\nLower maintenance cost.\r\nHigh Visibility\r\nMaintains original skid resistance.\r\nNonskid (not “slip resistant“)\r\n“Zero clearance”, no “trip hazards” (no seams!)\r\nLiquid plastic, made on site, follows every contour\r\nPerfect for new construction or retrofit\r\n5 year replacement warranty\r\nInstallation requirements: Clean and dry, weather permitting\r\nContinuous installation! No seams (EVER).\r\nNo caulking needed (EVER).\r\nStronger than the surface applied to.\r\nTraffic ready in 90 minutes.\" font_container=\"tag:div|text_align:left|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_btn title=\"More About Vanguard\" color=\"sky\" align=\"center\" css_animation=\"fadeInUp\" css=\"\" link=\"url:https%3A%2F%2Fvanguardonline.com%2F|target:_blank\"][vc_empty_space height=\"30px\"][/vc_column][vc_column width=\"1/6\" css=\".vc_custom_1755886227553{background-color: #062947 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1755884199915{background-color: #9BC7EF !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"30px\"][vc_custom_heading text=\"Vanguard ADA Systems\" font_container=\"tag:h1|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\" css=\"\"][vc_empty_space height=\"60px\"][vc_single_image image=\"610\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css=\"\"][vc_empty_space height=\"30px\"][vc_icon icon_fontawesome=\"fas fa-paint-roller\" color=\"white\" background_style=\"rounded\" background_color=\"sky\" size=\"lg\" align=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"611\" img_size=\"400x400\" alignment=\"center\" css=\"\"][vc_empty_space height=\"60px\"][vc_row_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"Truncated Domes\r\nDetectable Warning Surfaces (DWS)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"602\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"615\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][vc_column_inner width=\"1/3\"][vc_custom_heading text=\"GuideStrips\r\nTactile Direction Indicators (TDI)\" font_container=\"tag:h3|text_align:center|color:%232A78D6\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"20px\"][vc_single_image image=\"616\" img_size=\"300x300\" alignment=\"center\" style=\"vc_box_shadow_circle\" css_animation=\"fadeInUp\" css=\"\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"30px\"][vc_custom_heading text=\"ADA compliance is right around the corner. We can help you get there. Our installers are here to make the process as simple and pain-free as possible. With only a few options for installers in Oregon, we can confidently say we are the cream of the crop.\" font_container=\"tag:h5|text_align:center|color:%23FFFFFF\" use_theme_fonts=\"yes\" css=\"\"][vc_empty_space height=\"60px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column][vc_wp_custommenu nav_menu=\"16\"][/vc_column][/vc_row]','Vanguard-ADA-Systems','','inherit','closed','closed','','601-revision-v1','','','2025-09-23 22:40:51','2025-09-23 22:40:51','',601,'https://guidoconstructioninc.com/?p=665',0,'revision','',0),
(666,1,'2025-09-23 23:19:13','2025-09-23 23:19:13','','Selected Version - September (RGB) (Transparent)','','inherit','open','closed','','selected-version-september-rgb-transparent','','','2025-09-23 23:19:13','2025-09-23 23:19:13','',0,'https://guidoconstructioninc.com/wp-content/uploads/2025/09/Selected-Version-September-RGB-Transparent.png',0,'attachment','image/png',0),
(667,1,'2025-09-23 23:19:41','2025-09-23 23:19:41','https://guidoconstructioninc.com/wp-content/uploads/2025/09/cropped-Selected-Version-September-RGB-Transparent.png','cropped-Selected-Version-September-RGB-Transparent.png','','inherit','open','closed','','cropped-selected-version-september-rgb-transparent-png','','','2025-09-23 23:19:41','2025-09-23 23:19:41','',666,'https://guidoconstructioninc.com/wp-content/uploads/2025/09/cropped-Selected-Version-September-RGB-Transparent.png',0,'attachment','image/png',0),
(669,1,'2025-09-23 23:25:44','2025-09-23 23:25:44','','GCI (Transparent) RGB','','inherit','open','closed','','gci-transparent-rgb','','','2025-09-23 23:25:44','2025-09-23 23:25:44','',0,'https://guidoconstructioninc.com/wp-content/uploads/2025/09/GCI-Transparent-RGB.png',0,'attachment','image/png',0),
(670,1,'2025-09-23 23:27:12','2025-09-23 23:27:12','','GCI TRANSPARENT(RGB)','','inherit','open','closed','','gci-transparentrgb','','','2025-09-23 23:27:12','2025-09-23 23:27:12','',0,'https://guidoconstructioninc.com/wp-content/uploads/2025/09/GCI-TRANSPARENTRGB.png',0,'attachment','image/png',0),
(671,1,'2025-09-23 23:27:44','2025-09-23 23:27:44','https://guidoconstructioninc.com/wp-content/uploads/2025/09/cropped-GCI-TRANSPARENTRGB.png','cropped-GCI-TRANSPARENTRGB.png','','inherit','open','closed','','cropped-gci-transparentrgb-png','','','2025-09-23 23:27:44','2025-09-23 23:27:44','',670,'https://guidoconstructioninc.com/wp-content/uploads/2025/09/cropped-GCI-TRANSPARENTRGB.png',0,'attachment','image/png',0),
(672,1,'2025-09-23 23:28:54','2025-09-23 23:28:54','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_custom_heading text=\"GUIDO CONSTRUCTION INC.\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"80px\"][vc_single_image image=\"667\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"blue\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"blue\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" css=\".vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" offset=\"vc_hidden-sm vc_hidden-xs\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1758670091622-65587ec4-587c-6\" include=\"583,582,581\"][vc_empty_space][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1758670091622-88fca75b-f25a-7\" include=\"531,359,378\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInLeft\" link=\"http://guidoconstructioninc.com/portfolio\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInUp\" link=\"http://guidoconstructioninc.com/services\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInRight\" link=\"http://guidoconstructioninc.com/about-us\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1758670091624-d07fab9c-d59b-2\" include=\"267,266,271,265\"][vc_empty_space][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2025-09-23 23:28:54','2025-09-23 23:28:54','',41,'https://guidoconstructioninc.com/?p=672',0,'revision','',0),
(673,1,'2025-09-23 23:29:34','2025-09-23 23:29:34','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_empty_space height=\"80px\"][vc_single_image image=\"667\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"blue\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"blue\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" css=\".vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" offset=\"vc_hidden-sm vc_hidden-xs\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1758670135719-534cad9c-e120-3\" include=\"583,582,581\"][vc_empty_space][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1758670135720-6cf487fe-f452-10\" include=\"531,359,378\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInLeft\" link=\"http://guidoconstructioninc.com/portfolio\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInUp\" link=\"http://guidoconstructioninc.com/services\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInRight\" link=\"http://guidoconstructioninc.com/about-us\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1758670135722-d7ddbad4-f022-0\" include=\"267,266,271,265\"][vc_empty_space][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2025-09-23 23:29:34','2025-09-23 23:29:34','',41,'https://guidoconstructioninc.com/?p=673',0,'revision','',0),
(676,1,'2025-09-24 00:28:18','2025-09-24 00:28:18','','Guido Construction Inc White Logo(RGB)','','inherit','open','closed','','guido-construction-inc-white-logorgb','','','2025-09-24 00:28:18','2025-09-24 00:28:18','',0,'https://guidoconstructioninc.com/wp-content/uploads/2025/09/Guido-Construction-Inc-White-LogoRGB.png',0,'attachment','image/png',0),
(677,1,'2025-09-24 00:31:32','2025-09-24 00:31:32','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1758673837847-2c53617c-53be-2\" include=\"583,582,581\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"40px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was born and raised locally in Roseburg and has over 37 years of building experience. His grandparents, Frank and Nina Guido, created many businesses including Umpqua Sand and Gravel - Concrete Service. Darby learned his work ethic, living and working on the Guido Ranch. Immersed from an early age in the culture of business and working.\r\n\r\nIn 1986, Darby began his career in business with Cradar Enterprises “Craig &amp; Darby” with Steve &amp; Peggy Guido. For the next 15 years, learning to build with Cradar helped Darby develop his management experience in Building and Concrete Construction. By 2000, Darby Guido purchased Mel Gregory’s equipment “his mentor in concrete”. With the support of family businesses in Construction, created a sole proprietorship “Darby Guido Construction”.\r\n\r\nFor 8 years, Darby Guido Construction experienced growth and a success in the concrete industry, by completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company became incorporated in 2008 to Guido Construction Inc. In order to reflect the business growth with a long legacy in mind. Dorena Guido Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children are developing there professional roles within the business, with generational work ethics.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"269\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"669\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"President &amp; CEO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text css=\"\"]Dorena is the esteemed leader at Guido Construction Inc. She takes great pride in her construction business, paving the way for women in the industry. Dorena highly values her heritage as a Tribal member of the Citizen Potawatomi Nation. In addition to being CEO, Dorena loves to spend time at the lake with her family and friends, playing fetch with her pups, and traveling.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Construction Manager &amp; COO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text css=\"\"]Darby is dedicated to the construction and concrete industry. Having grown up in the business and following in the footsteps of his forefathers, Darby views construction and concrete as both a passion and a vocation. Darby manages operations at Guido Construction Inc., overseeing crews and projects. In addition to playing with rocks, Darby enjoys family vacations, lake time, movie nights with his granddaughter, and gardening.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1758673837853-d4cf350f-da46-9\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2025-09-24 00:31:32','2025-09-24 00:31:32','',60,'https://guidoconstructioninc.com/?p=677',0,'revision','',0),
(678,1,'2025-09-24 00:32:16','2025-09-24 00:32:16','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1758673894005-ade5dfe5-d1c6-6\" include=\"583,582,581\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"40px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was born and raised locally in Roseburg and has over 37 years of building experience. His grandparents, Frank and Nina Guido, created many businesses including Umpqua Sand and Gravel - Concrete Service. Darby learned his work ethic, living and working on the Guido Ranch. Immersed from an early age in the culture of business and working.\r\n\r\nIn 1986, Darby began his career in business with Cradar Enterprises “Craig &amp; Darby” with Steve &amp; Peggy Guido. For the next 15 years, learning to build with Cradar helped Darby develop his management experience in Building and Concrete Construction. By 2000, Darby Guido purchased Mel Gregory’s equipment “his mentor in concrete”. With the support of family businesses in Construction, created a sole proprietorship “Darby Guido Construction”.\r\n\r\nFor 8 years, Darby Guido Construction experienced growth and a success in the concrete industry, by completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company became incorporated in 2008 to Guido Construction Inc. In order to reflect the business growth with a long legacy in mind. Dorena Guido Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children are developing there professional roles within the business, with generational work ethics.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"269\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"669\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"President &amp; CEO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text css=\"\"]Dorena is the esteemed leader at Guido Construction Inc. She takes great pride in her construction business, paving the way for women in the industry. Dorena highly values her heritage as a Tribal member of the Citizen Potawatomi Nation. In addition to being CEO, Dorena loves to spend time at the lake with her family and friends, playing fetch with her pups, and traveling.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Construction Manager &amp; COO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text css=\"\"]Darby is dedicated to the construction and concrete industry. Having grown up in the business and following in the footsteps of his forefathers, Darby views construction and concrete as both a passion and a vocation. Darby manages operations at Guido Construction Inc., overseeing crews and projects. In addition to playing with rocks, Darby enjoys family vacations, lake time, movie nights with his granddaughter, and gardening.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1758673894009-82f3acca-ff00-8\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2025-09-24 00:32:16','2025-09-24 00:32:16','',60,'https://guidoconstructioninc.com/?p=678',0,'revision','',0),
(679,1,'2025-09-24 00:32:58','2025-09-24 00:32:58','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1758673938998-f3ea7a9a-fc60-4\" include=\"583,582,581\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"40px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was born and raised locally in Roseburg and has over 37 years of building experience. His grandparents, Frank and Nina Guido, created many businesses including Umpqua Sand and Gravel - Concrete Service. Darby learned his work ethic, living and working on the Guido Ranch. Immersed from an early age in the culture of business and working.\r\n\r\nIn 1986, Darby began his career in business with Cradar Enterprises “Craig &amp; Darby” with Steve &amp; Peggy Guido. For the next 15 years, learning to build with Cradar helped Darby develop his management experience in Building and Concrete Construction. By 2000, Darby Guido purchased Mel Gregory’s equipment “his mentor in concrete”. With the support of family businesses in Construction, created a sole proprietorship “Darby Guido Construction”.\r\n\r\nFor 8 years, Darby Guido Construction experienced growth and a success in the concrete industry, by completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company became incorporated in 2008 to Guido Construction Inc. In order to reflect the business growth with a long legacy in mind. Dorena Guido Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children are developing there professional roles within the business, with generational work ethics.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"269\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"671\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"President &amp; CEO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text css=\"\"]Dorena is the esteemed leader at Guido Construction Inc. She takes great pride in her construction business, paving the way for women in the industry. Dorena highly values her heritage as a Tribal member of the Citizen Potawatomi Nation. In addition to being CEO, Dorena loves to spend time at the lake with her family and friends, playing fetch with her pups, and traveling.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Construction Manager &amp; COO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text css=\"\"]Darby is dedicated to the construction and concrete industry. Having grown up in the business and following in the footsteps of his forefathers, Darby views construction and concrete as both a passion and a vocation. Darby manages operations at Guido Construction Inc., overseeing crews and projects. In addition to playing with rocks, Darby enjoys family vacations, lake time, movie nights with his granddaughter, and gardening.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1758673939001-a049ae8c-6367-3\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2025-09-24 00:32:58','2025-09-24 00:32:58','',60,'https://guidoconstructioninc.com/?p=679',0,'revision','',0),
(680,1,'2025-09-24 00:33:56','2025-09-24 00:33:56','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1758673980603-540f4ade-f1f3-10\" include=\"583,582,581\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"40px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was born and raised locally in Roseburg and has over 37 years of building experience. His grandparents, Frank and Nina Guido, created many businesses including Umpqua Sand and Gravel - Concrete Service. Darby learned his work ethic, living and working on the Guido Ranch. Immersed from an early age in the culture of business and working.\r\n\r\nIn 1986, Darby began his career in business with Cradar Enterprises “Craig &amp; Darby” with Steve &amp; Peggy Guido. For the next 15 years, learning to build with Cradar helped Darby develop his management experience in Building and Concrete Construction. By 2000, Darby Guido purchased Mel Gregory’s equipment “his mentor in concrete”. With the support of family businesses in Construction, created a sole proprietorship “Darby Guido Construction”.\r\n\r\nFor 8 years, Darby Guido Construction experienced growth and a success in the concrete industry, by completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company became incorporated in 2008 to Guido Construction Inc. In order to reflect the business growth with a long legacy in mind. Dorena Guido Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children are developing there professional roles within the business, with generational work ethics.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"269\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"671\" img_size=\"full\" alignment=\"center\" css_animation=\"fadeInLeft\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"President &amp; CEO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text css=\"\"]Dorena is the esteemed leader at Guido Construction Inc. She takes great pride in her construction business, paving the way for women in the industry. Dorena highly values her heritage as a Tribal member of the Citizen Potawatomi Nation. In addition to being CEO, Dorena loves to spend time at the lake with her family and friends, playing fetch with her pups, and traveling.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Construction Manager &amp; COO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text css=\"\"]Darby is dedicated to the construction and concrete industry. Having grown up in the business and following in the footsteps of his forefathers, Darby views construction and concrete as both a passion and a vocation. Darby manages operations at Guido Construction Inc., overseeing crews and projects. In addition to playing with rocks, Darby enjoys family vacations, lake time, movie nights with his granddaughter, and gardening.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1758673980608-29ea4ac8-1b31-8\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2025-09-24 00:33:56','2025-09-24 00:33:56','',60,'https://guidoconstructioninc.com/?p=680',0,'revision','',0);
INSERT INTO `wpwn_posts` VALUES
(681,1,'2025-09-24 00:35:36','2025-09-24 00:35:36','<p>[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1758674045029-f6830e668f184d68f4774c32002dabd0-1\" include=\"583,582,581\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"40px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was born and raised locally in Roseburg and has over 37 years of building experience. His grandparents, Frank and Nina Guido, created many businesses including Umpqua Sand and Gravel - Concrete Service. Darby learned his work ethic, living and working on the Guido Ranch. Immersed from an early age in the culture of business and working.</p>\n<p>In 1986, Darby began his career in business with Cradar Enterprises “Craig &amp; Darby” with Steve &amp; Peggy Guido. For the next 15 years, learning to build with Cradar helped Darby develop his management experience in Building and Concrete Construction. By 2000, Darby Guido purchased Mel Gregory’s equipment “his mentor in concrete”. With the support of family businesses in Construction, created a sole proprietorship “Darby Guido Construction”.</p>\n<p>For 8 years, Darby Guido Construction experienced growth and a success in the concrete industry, by completed reputable regional projects and built many strong business relationships that are still valuable today.</p>\n<p>The company became incorporated in 2008 to Guido Construction Inc. In order to reflect the business growth with a long legacy in mind. Dorena Guido Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children are developing there professional roles within the business, with generational work ethics.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"269\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"671\" img_size=\"medium\" alignment=\"center\" css_animation=\"fadeInLeft\" css=\"\"][vc_empty_space height=\"10px\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"President &amp; CEO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text css=\"\"]Dorena is the esteemed leader at Guido Construction Inc. She takes great pride in her construction business, paving the way for women in the industry. Dorena highly values her heritage as a Tribal member of the Citizen Potawatomi Nation. In addition to being CEO, Dorena loves to spend time at the lake with her family and friends, playing fetch with her pups, and traveling.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Construction Manager &amp; COO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text css=\"\"]Darby is dedicated to the construction and concrete industry. Having grown up in the business and following in the footsteps of his forefathers, Darby views construction and concrete as both a passion and a vocation. Darby manages operations at Guido Construction Inc., overseeing crews and projects. In addition to playing with rocks, Darby enjoys family vacations, lake time, movie nights with his granddaughter, and gardening.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]</p>\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\n<p>[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1758674046368-3625f5b734aa88f181da4b1ad12492a0-3\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]</p>\n<ul>\n<li style=\"text-align: left;\">\n<h3><em>Dedicated Experience</em></h3>\n</li>\n<li style=\"text-align: left;\">\n<h3><em>Prompt Timelines</em></h3>\n</li>\n<li style=\"text-align: left;\">\n<h3><em>Solution Oriented</em></h3>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]</p>\n<ul>\n<li>\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\n</li>\n<li style=\"text-align: left;\">\n<h3><em>Honest Work</em></h3>\n</li>\n<li>\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\n</li>\n</ul>\n<p>[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]</p>\n','About Us','','inherit','closed','closed','','60-revision-v1','','','2025-09-24 00:35:36','2025-09-24 00:35:36','',60,'https://guidoconstructioninc.com/?p=681',0,'revision','',0),
(682,1,'2025-09-24 00:36:36','2025-09-24 00:36:36','[vc_row css=\".vc_custom_1630365309294{background-color: #a4b0bc !important;}\"][vc_column][vc_empty_space height=\"130px\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"25px\"][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1758674161122-5b06b169-256c-7\" include=\"583,582,581\"][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"40px\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h2|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"1/3\"][vc_custom_heading text=\"Our Story\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"35px\"][vc_column_text css_animation=\"fadeInLeft\"]Guido Construction Inc. is rooted in family and set in concrete. Our story begins with our founder, Darby Guido, who was born and raised locally in Roseburg and has over 37 years of building experience. His grandparents, Frank and Nina Guido, created many businesses including Umpqua Sand and Gravel - Concrete Service. Darby learned his work ethic, living and working on the Guido Ranch. Immersed from an early age in the culture of business and working.\r\n\r\nIn 1986, Darby began his career in business with Cradar Enterprises “Craig &amp; Darby” with Steve &amp; Peggy Guido. For the next 15 years, learning to build with Cradar helped Darby develop his management experience in Building and Concrete Construction. By 2000, Darby Guido purchased Mel Gregory’s equipment “his mentor in concrete”. With the support of family businesses in Construction, created a sole proprietorship “Darby Guido Construction”.\r\n\r\nFor 8 years, Darby Guido Construction experienced growth and a success in the concrete industry, by completed reputable regional projects and built many strong business relationships that are still valuable today.\r\n\r\nThe company became incorporated in 2008 to Guido Construction Inc. In order to reflect the business growth with a long legacy in mind. Dorena Guido Darby’s wife, was brought on as the majority shareholder of the company. Additionally, their children are developing there professional roles within the business, with generational work ethics.[/vc_column_text][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"269\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][vc_single_image image=\"51\" img_size=\"large\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/3\"][vc_single_image image=\"304\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInRight\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"671\" img_size=\"medium\" alignment=\"center\" css_animation=\"fadeInLeft\" css=\"\"][vc_custom_heading text=\"Mission Statement\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\"][vc_empty_space height=\"5px\"][vc_column_text css_animation=\"fadeInLeft\"]It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row][vc_row][vc_column][vc_separator style=\"shadow\" css_animation=\"fadeInUp\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"331\" img_size=\"medium\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Meet Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"332\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Dorena Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_custom_heading text=\"President &amp; CEO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text css=\"\"]Dorena is the esteemed leader at Guido Construction Inc. She takes great pride in her construction business, paving the way for women in the industry. Dorena highly values her heritage as a Tribal member of the Citizen Potawatomi Nation. In addition to being CEO, Dorena loves to spend time at the lake with her family and friends, playing fetch with her pups, and traveling.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"176\" alignment=\"center\" css_animation=\"fadeInUp\"][vc_single_image image=\"333\" alignment=\"center\" style=\"vc_box_shadow_circle_2\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Darby Guido\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_custom_heading text=\"Construction Manager &amp; COO\" font_container=\"tag:h4|text_align:center|color:%23234D80\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"20\"][vc_column_text css=\"\"]Darby is dedicated to the construction and concrete industry. Having grown up in the business and following in the footsteps of his forefathers, Darby views construction and concrete as both a passion and a vocation. Darby manages operations at Guido Construction Inc., overseeing crews and projects. In addition to playing with rocks, Darby enjoys family vacations, lake time, movie nights with his granddaughter, and gardening.[/vc_column_text][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"Our Team\" font_container=\"tag:h1|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][vc_single_image image=\"100\" img_size=\"Large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: center;\">The value we place on our team is unlike other small town companies. Our crew is our family. We take pride in our hardworking and trustworthy team. Our crew is filled to the brim with the best of the best in concrete construction. We are a well oiled machine as soon as our boots hit the ground.</p>\r\n[/vc_column_text][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid element_width=\"2\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1758674161125-1ea00e90-3173-9\" include=\"271,268,310,307,359,458\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space][vc_custom_heading text=\"Company Values\" font_container=\"tag:h2|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/12\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"457\" img_size=\"large\" alignment=\"right\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInLeft\"][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Dedicated Experience</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Prompt Timelines</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Solution Oriented</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][vc_empty_space height=\"30px\"][vc_column_text css_animation=\"fadeInRight\"]\r\n<ul>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Quality Products</em></h3>\r\n</li>\r\n 	<li style=\"text-align: left;\">\r\n<h3><em>Honest Work</em></h3>\r\n</li>\r\n 	<li>\r\n<h3 style=\"text-align: left;\"><em>Positive Working Environment</em></h3>\r\n</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/12\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','60-revision-v1','','','2025-09-24 00:36:36','2025-09-24 00:36:36','',60,'https://guidoconstructioninc.com/?p=682',0,'revision','',0),
(684,1,'2025-09-24 01:22:11','2025-09-24 01:22:11','','lambert','','inherit','closed','closed','','475-revision-v1','','','2025-09-24 01:22:11','2025-09-24 01:22:11','',475,'https://guidoconstructioninc.com/?p=684',0,'revision','',0),
(692,1,'2025-09-24 16:49:04','2025-09-24 16:49:04','','Default Kit','','publish','closed','closed','','default-kit','','','2025-09-24 16:49:04','2025-09-24 16:49:04','',0,'https://guidoconstructioninc.com/?p=692',0,'elementor_library','',0),
(693,1,'2025-09-24 16:49:22','0000-00-00 00:00:00','','Elementor #693','','draft','closed','closed','','','','','2025-09-24 16:49:22','2025-09-24 16:49:22','',0,'https://guidoconstructioninc.com/?page_id=693',0,'page','',0),
(694,1,'2025-09-24 16:49:22','2025-09-24 16:49:22','','Elementor #693','','inherit','closed','closed','','693-revision-v1','','','2025-09-24 16:49:22','2025-09-24 16:49:22','',693,'https://guidoconstructioninc.com/?p=694',0,'revision','',0),
(695,1,'2025-09-24 16:49:24','0000-00-00 00:00:00','','Elementor #695','','draft','closed','closed','','','','','2025-09-24 16:49:24','2025-09-24 16:49:24','',0,'https://guidoconstructioninc.com/?page_id=695',0,'page','',0),
(696,1,'2025-09-24 16:49:24','2025-09-24 16:49:24','','Elementor #695','','inherit','closed','closed','','695-revision-v1','','','2025-09-24 16:49:24','2025-09-24 16:49:24','',695,'https://guidoconstructioninc.com/?p=696',0,'revision','',0),
(698,1,'2025-09-24 17:05:01','2025-09-24 17:05:01','','Asset 3','','inherit','open','closed','','asset-3-2','','','2025-09-24 17:05:01','2025-09-24 17:05:01','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/Asset-3.png',0,'attachment','image/png',0),
(699,1,'2025-09-24 17:05:38','2025-09-24 17:05:38','','GCI Light Logo','','inherit','open','closed','','gci-light-logo','','','2025-09-24 17:05:38','2025-09-24 17:05:38','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/GCI-Light-Logo.png',0,'attachment','image/png',0),
(701,1,'2025-09-24 17:06:32','2025-09-24 17:06:32','','GuidoConstructionInc. Small Logo','','inherit','open','closed','','guidoconstructioninc-small-logo','','','2025-09-24 17:06:32','2025-09-24 17:06:32','',0,'https://guidoconstructioninc.com/wp-content/uploads/2021/08/GuidoConstructionInc.-Small-Logo.png',0,'attachment','image/png',0),
(718,1,'2026-01-05 21:18:52','2026-01-05 21:18:52','[vc_row disable_element=\"yes\" overflow=\"default\" css=\".vc_custom_1767647929124{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_empty_space height=\"80px\"][vc_single_image image=\"667\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"blue\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"blue\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" css=\".vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>[/vc_cta][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" offset=\"vc_hidden-sm vc_hidden-xs\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1767647911121-b2be060bf2ec8b22665795f01d615140-0\" include=\"583,582,581\"][vc_empty_space][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1767647911223-5496d0669dac6eca2d9783e0cce45e07-1\" include=\"531,359,378\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInLeft\" link=\"http://guidoconstructioninc.com/portfolio\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInUp\" link=\"http://guidoconstructioninc.com/services\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInRight\" link=\"http://guidoconstructioninc.com/about-us\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1767647911857-d0694794ff3c563d56c5cdcca11f6f39-6\" include=\"267,266,271,265\"][vc_empty_space][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2026-01-05 21:18:52','2026-01-05 21:18:52','',41,'https://guidoconstructioninc.com/?p=718',0,'revision','',0),
(719,1,'2026-01-05 21:19:16','2026-01-05 21:19:16','[vc_row css=\".vc_custom_1630097308666{background-color: #002d5e !important;}\"][vc_column][vc_empty_space height=\"120px\"][/vc_column][/vc_row][vc_row][vc_column][smartslider3 slider=\"2\"][/vc_column][/vc_row][vc_row content_placement=\"top\" parallax=\"content-moving\" parallax_speed_bg=\"2\" css_animation=\"fadeInUp\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][vc_custom_heading text=\"WELCOME TO\" font_container=\"tag:h3|text_align:center|color:%23316fbc\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_empty_space height=\"5px\"][vc_empty_space height=\"80px\"][vc_single_image image=\"667\" img_size=\"large\" alignment=\"center\" css_animation=\"fadeInUp\" css=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" disable_element=\"yes\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/2\"][vc_cta h2=\"Welcome To Guido Construction, Inc.\" txt_align=\"center\" color=\"blue\" add_button=\"bottom\" btn_title=\"Contact Us Today\" btn_style=\"3d\" btn_color=\"blue\" btn_align=\"center\" btn_css_animation=\"fadeInUp\" add_icon=\"top\" i_icon_fontawesome=\"fas fa-door-open\" i_size=\"lg\" i_css_animation=\"fadeIn\" css_animation=\"fadeInUp\" css=\".vc_custom_1720214888665{margin-top: -50px !important;margin-bottom: -100px !important;border-top-width: -15px !important;border-bottom-width: -15px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"]\r\n<p style=\"text-align: center;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</p>\r\n[/vc_cta][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row parallax=\"content-moving-fade\" css=\".vc_custom_1630085697772{background-color: #141a3c !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\" offset=\"vc_hidden-sm vc_hidden-xs\"][vc_empty_space height=\"80px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h1 style=\"text-align: center; color: white;\">O U R  M I S S I O N</h1>\r\n[/vc_column_text][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center; color: white;\">It is the mission of Guido Construction Inc. to exceed our customer’s expectations by providing superior workmanship and outstanding customer service throughout each and every project we complete. We take pride in our reputation for delivering quality work, responsive service, and unparalleled customer satisfaction by completing projects on time and on budget. We look forward to becoming your preferred construction company.</h3>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][vc_column_inner width=\"2/3\"][vc_masonry_media_grid css=\"\" initial_loading_animation=\"fadeIn\" grid_id=\"vc_gid:1758670135719-534cad9c-e120-3\" include=\"583,582,581\"][vc_empty_space][/vc_column_inner][vc_column_inner width=\"1/6\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"80px\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_media_grid item=\"mediaGrid_ScaleWithRotation\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1758670135720-6cf487fe-f452-10\" include=\"531,359,378\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"RECENT PROJECTS\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInLeft\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fportfolio%2F|title:Portfolio\"][vc_single_image image=\"173\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInLeft\" link=\"http://guidoconstructioninc.com/portfolio\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"SERVICES\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInUp\"][vc_single_image image=\"175\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInUp\" link=\"http://guidoconstructioninc.com/services\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h3|text_align:center|color:%23141a3c\" use_theme_fonts=\"yes\" css_animation=\"fadeInRight\"][vc_single_image image=\"174\" alignment=\"center\" onclick=\"custom_link\" img_link_target=\"_blank\" css_animation=\"fadeInRight\" link=\"http://guidoconstructioninc.com/about-us\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_video link=\"https://youtu.be/bMKLX3teORY\" align=\"center\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_column_text css_animation=\"fadeInUp\"]\r\n<h3 style=\"text-align: center;\">Delivering the finest concrete work in the Pacific Northwest.</h3>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_empty_space height=\"18px\"][vc_single_image image=\"456\" img_size=\"large\" alignment=\"center\" style=\"vc_box_shadow_3d\" css_animation=\"fadeInUp\"][vc_empty_space height=\"18px\"][vc_btn title=\"CONTACT US\" style=\"gradient-custom\" gradient_custom_color_1=\"#00226d\" gradient_custom_color_2=\"#187ab2\" link=\"url:https%3A%2F%2Fguidoconstructioninc.com%2Fcontact-us%2F|title:Contact%20Us|target:_blank\"][vc_empty_space height=\"18px\"][vc_media_grid element_width=\"3\" initial_loading_animation=\"fadeInUp\" grid_id=\"vc_gid:1758670135722-d7ddbad4-f022-0\" include=\"267,266,271,265\"][vc_empty_space][vc_custom_heading text=\"We are proud members of the American Society of Concrete Contractors (ASCC).\" font_container=\"tag:h4|text_align:center|color:%231e73be\" use_theme_fonts=\"yes\" css_animation=\"fadeIn\"][vc_empty_space][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row disable_element=\"yes\"][vc_column width=\"5/6\"][/vc_column][vc_column width=\"1/6\"][vc_facebook css_animation=\"fadeInUp\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','41-revision-v1','','','2026-01-05 21:19:16','2026-01-05 21:19:16','',41,'https://guidoconstructioninc.com/?p=719',0,'revision','',0);
/*!40000 ALTER TABLE `wpwn_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_term_relationships`
--

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

--
-- Dumping data for table `wpwn_term_relationships`
--

LOCK TABLES `wpwn_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpwn_term_relationships` DISABLE KEYS */;
INSERT INTO `wpwn_term_relationships` VALUES
(65,16,0),
(66,16,0),
(67,16,0),
(68,16,0),
(69,16,0);
/*!40000 ALTER TABLE `wpwn_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_term_taxonomy`
--

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

--
-- Dumping data for table `wpwn_term_taxonomy`
--

LOCK TABLES `wpwn_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpwn_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpwn_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,5),
(17,17,'job-type','',0,0),
(18,18,'job-type','',0,0),
(19,19,'job-type','',0,0);
/*!40000 ALTER TABLE `wpwn_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_termmeta`
--

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

--
-- Dumping data for table `wpwn_termmeta`
--

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

--
-- Table structure for table `wpwn_terms`
--

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

--
-- Dumping data for table `wpwn_terms`
--

LOCK TABLES `wpwn_terms` WRITE;
/*!40000 ALTER TABLE `wpwn_terms` DISABLE KEYS */;
INSERT INTO `wpwn_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,'Top','top',0),
(17,'Full Time','full-time',0),
(18,'Part Time','part-time',0),
(19,'Freelance','freelance',0);
/*!40000 ALTER TABLE `wpwn_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_usermeta`
--

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

--
-- Dumping data for table `wpwn_usermeta`
--

LOCK TABLES `wpwn_usermeta` WRITE;
/*!40000 ALTER TABLE `wpwn_usermeta` DISABLE KEYS */;
INSERT INTO `wpwn_usermeta` VALUES
(1,1,'nickname','admin'),
(2,1,'first_name',''),
(3,1,'last_name',''),
(4,1,'description',''),
(5,1,'rich_editing','true'),
(6,1,'syntax_highlighting','true'),
(7,1,'comment_shortcuts','false'),
(8,1,'admin_color','fresh'),
(9,1,'use_ssl','0'),
(10,1,'show_admin_bar_front','true'),
(11,1,'locale',''),
(12,1,'wpwn_capabilities','a:1:{s:13:\"administrator\";b:1;}'),
(13,1,'wpwn_user_level','10'),
(14,1,'dismissed_wp_pointers','vc_pointers_backend_editor,theme_editor_notice'),
(15,1,'show_welcome_panel','1'),
(17,1,'wpwn_dashboard_quick_press_last_post_id','715'),
(18,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"47.42.171.0\";}'),
(19,1,'_woocommerce_tracks_anon_id','woo:dh6MDGw/1OWK5jkNZonSJwYX'),
(20,1,'wc_last_active','1630454400'),
(21,1,'wpwn_user-settings','libraryContent=browse&edit_element_vcUIPanelWidth=616&edit_element_vcUIPanelLeft=381px&edit_element_vcUIPanelTop=167px&editor=html&panel_vcUIPanelWidth=650&panel_vcUIPanelLeft=447px&panel_vcUIPanelTop=74px&custom_code_vcUIPanelWidth=650&custom_code_vcUIPanelLeft=1125px&custom_code_vcUIPanelTop=74px'),
(22,1,'wpwn_user-settings-time','1758734735'),
(23,1,'_order_count','0'),
(24,1,'closedpostboxes_page','a:0:{}'),
(25,1,'metaboxhidden_page','a:6:{i:0;s:12:\"revisionsdiv\";i:1;s:10:\"postcustom\";i:2;s:16:\"commentstatusdiv\";i:3;s:11:\"commentsdiv\";i:4;s:7:\"slugdiv\";i:5;s:9:\"authordiv\";}'),
(26,1,'meta-box-order_page','a:3:{s:4:\"side\";s:36:\"pageparentdiv,submitdiv,postimagediv\";s:6:\"normal\";s:90:\"wpb_visual_composer,revisionsdiv,postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv\";s:8:\"advanced\";s:0:\"\";}'),
(27,1,'screen_layout_page','2'),
(29,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),
(33,1,'last_update','1630453603'),
(34,1,'woocommerce_admin_activity_panel_inbox_last_read','1630453603600'),
(35,1,'nav_menu_recently_edited','16'),
(36,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\";}'),
(37,1,'metaboxhidden_nav-menus','a:10:{i:0;s:21:\"add-post-type-product\";i:1;s:20:\"add-post-type-member\";i:2;s:24:\"add-post-type-cthgallery\";i:3;s:21:\"add-post-type-cthmenu\";i:4;s:12:\"add-post_tag\";i:5;s:15:\"add-post_format\";i:6;s:18:\"add-cthgallery_cat\";i:7;s:15:\"add-cthmenu_cat\";i:8;s:15:\"add-product_cat\";i:9;s:15:\"add-product_tag\";}'),
(41,1,'closedpostboxes_dashboard','a:1:{i:0;s:17:\"dashboard_php_nag\";}'),
(42,1,'metaboxhidden_dashboard','a:0:{}'),
(47,1,'wpcf7_hide_welcome_panel_on','a:1:{i:0;s:3:\"5.9\";}'),
(50,1,'_vc_editor_promo_popup','8.7.2'),
(53,1,'wpwn_persisted_preferences','a:2:{s:17:\"core/edit-widgets\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2025-08-22T18:49:02.692Z\";}'),
(56,1,'session_tokens','a:1:{s:64:\"f309c12ae03dce50712017adc5326db32f4bd3da1829d45bd650a99a31cafa8f\";a:4:{s:10:\"expiration\";i:1767817966;s:2:\"ip\";s:13:\"47.42.171.161\";s:2:\"ua\";s:80:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:146.0) Gecko/20100101 Firefox/146.0\";s:5:\"login\";i:1767645166;}}'),
(57,1,'bsf-optin-notice','notice-dismissed');
/*!40000 ALTER TABLE `wpwn_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_users`
--

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

--
-- Dumping data for table `wpwn_users`
--

LOCK TABLES `wpwn_users` WRITE;
/*!40000 ALTER TABLE `wpwn_users` DISABLE KEYS */;
INSERT INTO `wpwn_users` VALUES
(1,'admin','$wp$2y$10$Xn36fn7HdUC7UpnXYvDuPum6pvNCFne0wtkzfsm4BRmjU6AoYvor6','admin','tiana@burtmg.com','https://guidoconstructioninc.com','2021-05-07 17:56:20','',0,'admin');
/*!40000 ALTER TABLE `wpwn_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_wc_admin_note_actions`
--

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

--
-- Dumping data for table `wpwn_wc_admin_note_actions`
--

LOCK TABLES `wpwn_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wpwn_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wpwn_wc_admin_note_actions` VALUES
(37,34,'yes-please','Yes please!','https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&amp;id=13860df971&amp;SIGNUPPAGE=plugin','actioned',0,'',NULL,NULL),
(74,35,'notify-refund-returns-page','Edit page','https://guidoconstructioninc.com/wp-admin/post.php?post=29&action=edit','actioned',0,'',NULL,NULL),
(75,36,'connect','Connect','?page=wc-addons&section=helper','unactioned',0,'',NULL,NULL),
(184,37,'visit-the-theme-marketplace','Visit the theme marketplace','https://woocommerce.com/product-category/themes/?utm_source=inbox','actioned',0,'',NULL,NULL),
(185,38,'affirm-insight-first-product-and-payment','Yes','','actioned',0,'Thanks for your feedback',NULL,NULL),
(186,38,'affirm-insight-first-product-and-payment','No','','actioned',0,'Thanks for your feedback',NULL,NULL),
(223,39,'learn-more','Learn more','https://woocommerce.com/mobile/','actioned',0,'',NULL,NULL),
(224,40,'add-first-product','Add a product','https://guidoconstructioninc.com/wp-admin/admin.php?page=wc-admin&task=products','actioned',0,'',NULL,NULL),
(261,41,'learn-more','Learn more','https://docs.woocommerce.com/document/managing-products/?utm_source=inbox','actioned',0,'',NULL,NULL),
(334,42,'view-payment-gateways','Learn more','https://woocommerce.com/product-category/woocommerce-extensions/payment-gateways/','actioned',1,'',NULL,NULL),
(335,43,'open-marketing-hub','Open marketing hub','https://guidoconstructioninc.com/wp-admin/admin.php?page=wc-admin&path=/marketing','actioned',0,'',NULL,NULL),
(409,44,'mercadopago_q3_2021_EN','Free download','https://woocommerce.com/products/mercado-pago-checkout/?utm_source=inbox&utm_medium=product&utm_campaign=mercadopago_q3_2021_EN','actioned',1,'',NULL,NULL),
(410,1,'wayflyer_q3_2021','Get funded','https://woocommerce.com/products/wayflyer/','actioned',1,'',NULL,NULL),
(411,2,'eu_vat_changes_2021','Learn more about the EU tax regulations','https://woocommerce.com/posts/new-eu-vat-regulations','actioned',1,'',NULL,NULL),
(412,3,'open_wc_paypal_payments_product_page','Learn more','https://woocommerce.com/products/woocommerce-paypal-payments/','actioned',1,'',NULL,NULL),
(413,4,'upgrade_now_facebook_pixel_api','Upgrade now','plugin-install.php?tab=plugin-information&plugin=&section=changelog','actioned',1,'',NULL,NULL),
(414,5,'learn_more_facebook_ec','Learn more','https://woocommerce.com/products/facebook/','unactioned',1,'',NULL,NULL),
(415,6,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned',1,'',NULL,NULL),
(416,7,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned',1,'',NULL,NULL),
(417,8,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned',1,'',NULL,NULL),
(418,9,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned',1,'',NULL,NULL),
(419,10,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox','actioned',1,'',NULL,NULL),
(420,11,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales','actioned',1,'',NULL,NULL),
(421,12,'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,'',NULL,NULL),
(422,13,'add-apple-pay','Add Apple Pay','/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments','actioned',1,'',NULL,NULL),
(423,13,'learn-more','Learn more','https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay','actioned',1,'',NULL,NULL),
(424,14,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales','actioned',1,'',NULL,NULL),
(425,15,'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,'',NULL,NULL),
(426,16,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox','actioned',1,'',NULL,NULL),
(427,17,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox','unactioned',1,'',NULL,NULL),
(428,18,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned',1,'',NULL,NULL),
(429,19,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned',1,'',NULL,NULL),
(430,20,'learn-more','Learn about Instant Deposits eligibility','https://docs.woocommerce.com/document/payments/instant-deposits/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_instant_deposits','actioned',1,'',NULL,NULL),
(431,21,'get-started','Get started','https://woocommerce.com/products/google-listings-and-ads','actioned',1,'',NULL,NULL),
(432,22,'update-wc-subscriptions-3-0-15','View latest version','https://guidoconstructioninc.com/wp-admin/admin.php?page=wc-admin&page=wc-addons&section=helper','actioned',1,'',NULL,NULL),
(433,23,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned',1,'',NULL,NULL),
(434,26,'get-woo-commerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'',NULL,NULL),
(435,27,'get-woocommerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'',NULL,NULL),
(436,28,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,'',NULL,NULL),
(437,29,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,'',NULL,NULL),
(438,30,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),
(439,30,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),
(440,31,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),
(441,31,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),
(442,32,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),
(443,32,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),
(444,33,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),
(445,33,'dismiss','Dismiss','','actioned',0,'',NULL,NULL);
/*!40000 ALTER TABLE `wpwn_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_wc_admin_notes`
--

DROP TABLE IF EXISTS `wpwn_wc_admin_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_wc_admin_notes` (
  `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `type` varchar(20) NOT NULL,
  `locale` varchar(20) NOT NULL,
  `title` longtext NOT NULL,
  `content` longtext NOT NULL,
  `content_data` longtext DEFAULT NULL,
  `status` varchar(200) NOT NULL,
  `source` varchar(200) 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) NOT NULL DEFAULT '',
  `image` varchar(200) DEFAULT NULL,
  `is_deleted` tinyint(1) NOT NULL DEFAULT 0,
  `icon` varchar(200) NOT NULL DEFAULT 'info',
  PRIMARY KEY (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_wc_admin_notes`
--

LOCK TABLES `wpwn_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wpwn_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wpwn_wc_admin_notes` VALUES
(1,'wayflyer_q3_2021','marketing','en_US','Grow your revenue with Wayflyer financing and analytics','Flexible financing tailored to your needs by <a href=\"https://woocommerce.com/products/wayflyer/\">Wayflyer</a> – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store\'s performance, Wayflyer can provide the financing you need to grow and the analytical insights to help you spend it.','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(2,'eu_vat_changes_2021','marketing','en_US','Get your business ready for the new EU tax regulations','On July 1, 2021, new taxation rules will come into play when the <a href=\"https://ec.europa.eu/taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_en\">European Union (EU) Value-Added Tax (VAT) eCommerce package</a> takes effect.<br /><br />The new regulations will impact virtually every B2C business involved in cross-border eCommerce trade with the EU.<br /><br />We therefore recommend <a href=\"https://woocommerce.com/posts/new-eu-vat-regulations\">familiarizing yourself with the new updates</a>, and consult with a tax professional to ensure your business is following regulations and best practice.','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(3,'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-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(4,'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 measurement and ad targeting capabilities.','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(5,'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-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(6,'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-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(7,'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-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(8,'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-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(9,'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-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(10,'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-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(11,'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-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(12,'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-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(13,'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>.','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(14,'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-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(15,'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-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(16,'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-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(17,'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-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(18,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(19,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(20,'wcpay_instant_deposits_gtm_2021','marketing','en_US','Get paid within minutes – Instant Deposits for WooCommerce Payments','Stay flexible with immediate access to your funds when you need them – including nights, weekends, and holidays. With <a href=\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox&amp;utm_medium=product&amp;utm_campaign=wcpay_instant_deposits\">WooCommerce Payments\'</a> new Instant Deposits feature, you’re able to transfer your earnings to a debit card within minutes.','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(21,'google_listings_and_ads_install','marketing','en_US','Drive traffic and sales with Google','Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(22,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site\'s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br /><br />Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br /><br />We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br /><br />If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(23,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(24,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(25,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(26,'wcpay-promo-2021-6-incentive-1','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br /><br />\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(27,'wcpay-promo-2021-6-incentive-2','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n				Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n				<br /><br />\n				By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay601\">Terms of Service</a>\n				and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n				','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(28,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There\'s a new PayPal on the block!<br /><br />Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','{}','unactioned','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(29,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','We\'ve developed a whole new <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension for WooCommerce</a> that combines the best features of our many PayPal extensions into just one extension.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our latest PayPal today to continue to receive support and updates.','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(30,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(31,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(32,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(33,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','{}','pending','woocommerce.com','2021-08-25 20:32:31',NULL,0,'plain','',0,'info'),
(34,'wc-admin-onboarding-email-marketing','info','en_US','Sign up for 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-08-25 20:32:32',NULL,0,'plain','',0,'info'),
(35,'wc-refund-returns-page','info','en_US','Setup a Refund and Returns Policy page to boost your store\'s credibility.','We have created a sample draft Refund and Returns Policy page for you. Please have a look and update it to fit your store.','{}','unactioned','woocommerce-core','2021-08-25 20:32:33',NULL,0,'plain','',0,'info'),
(36,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2021-08-25 20:32:33',NULL,0,'plain','',0,'info'),
(37,'wc-admin-choosing-a-theme','marketing','en_US','Choosing a theme?','Check out the themes that are compatible with WooCommerce and choose one aligned with your brand and business needs.','{}','unactioned','woocommerce-admin','2021-08-26 22:39:42',NULL,0,'plain','',0,'info'),
(38,'wc-admin-insight-first-product-and-payment','survey','en_US','Insight','More than 80% of new merchants add the first product and have at least one payment method set up during the first week.<br><br>Do you find this type of insight useful?','{}','unactioned','woocommerce-admin','2021-08-26 22:39:42',NULL,0,'plain','',0,'info'),
(39,'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-08-27 20:32:35',NULL,0,'plain','',0,'info'),
(40,'wc-admin-add-first-product-note','email','en_US','Add your first product','{greetings}<br /><br />Nice one; you\'ve created a WooCommerce store! Now it\'s time to add your first product and get ready to start selling.<br /><br />There are three ways to add your products: you can <strong>create products manually, import them at once via CSV file</strong>, or <strong>migrate them from another service</strong>.<br /><br /><a href=\"https://docs.woocommerce.com/document/managing-products/?utm_source=help_panel\">Explore our docs</a> for more information, or just get started!','{\"role\":\"administrator\"}','unactioned','woocommerce-admin','2021-08-27 20:32:35',NULL,0,'plain','https://guidoconstructioninc.com/wp-content/plugins/woocommerce/packages/woocommerce-admin/images/admin_notes/dashboard-widget-setup.png',0,'info'),
(41,'wc-admin-adding-and-managing-products','info','en_US','Adding and Managing Products','Learn more about how to set up products in WooCommerce through our useful documentation about adding and managing products.','{}','unactioned','woocommerce-admin','2021-08-28 20:48:54',NULL,0,'plain','',0,'info'),
(42,'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-08-30 20:32:46',NULL,0,'plain','',0,'info'),
(43,'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-08-30 20:32:46',NULL,0,'plain','',0,'info'),
(44,'mercadopago_q3_2021_EN','marketing','en_US','Get paid with Mercado Pago Checkout','Latin America\'s leading payment processor is now available for WooCommerce stores. Securely accept debit and credit cards, cash, bank transfers, and installment payments – backed by exclusive fraud prevention tools.','{}','pending','woocommerce.com','2021-08-31 22:31:34',NULL,0,'plain','',0,'info');
/*!40000 ALTER TABLE `wpwn_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_wc_category_lookup`
--

DROP TABLE IF EXISTS `wpwn_wc_category_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_wc_category_lookup`
--

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

--
-- Table structure for table `wpwn_wc_customer_lookup`
--

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

--
-- Dumping data for table `wpwn_wc_customer_lookup`
--

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

--
-- Table structure for table `wpwn_wc_download_log`
--

DROP TABLE IF EXISTS `wpwn_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_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) DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_wc_download_log`
--

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

--
-- Table structure for table `wpwn_wc_order_coupon_lookup`
--

DROP TABLE IF EXISTS `wpwn_wc_order_coupon_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_wc_order_coupon_lookup`
--

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

--
-- Table structure for table `wpwn_wc_order_product_lookup`
--

DROP TABLE IF EXISTS `wpwn_wc_order_product_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_wc_order_product_lookup`
--

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

--
-- Table structure for table `wpwn_wc_order_stats`
--

DROP TABLE IF EXISTS `wpwn_wc_order_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_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) 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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_wc_order_stats`
--

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

--
-- Table structure for table `wpwn_wc_order_tax_lookup`
--

DROP TABLE IF EXISTS `wpwn_wc_order_tax_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_wc_order_tax_lookup`
--

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

--
-- Table structure for table `wpwn_wc_product_meta_lookup`
--

DROP TABLE IF EXISTS `wpwn_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) 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) 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) DEFAULT 'taxable',
  `tax_class` varchar(100) 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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_wc_product_meta_lookup`
--

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

--
-- Table structure for table `wpwn_wc_reserved_stock`
--

DROP TABLE IF EXISTS `wpwn_wc_reserved_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_wc_reserved_stock`
--

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

--
-- Table structure for table `wpwn_wc_tax_rate_classes`
--

DROP TABLE IF EXISTS `wpwn_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_wc_tax_rate_classes` (
  `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) 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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_wc_tax_rate_classes`
--

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

--
-- Table structure for table `wpwn_wc_webhooks`
--

DROP TABLE IF EXISTS `wpwn_wc_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) NOT NULL,
  `name` text NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text NOT NULL,
  `secret` text NOT NULL,
  `topic` varchar(200) 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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_wc_webhooks`
--

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

--
-- Table structure for table `wpwn_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wpwn_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) DEFAULT NULL,
  `permissions` varchar(10) NOT NULL,
  `consumer_key` char(64) NOT NULL,
  `consumer_secret` char(43) NOT NULL,
  `nonces` longtext DEFAULT NULL,
  `truncated_key` char(7) 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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_woocommerce_api_keys`
--

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

--
-- Table structure for table `wpwn_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wpwn_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) NOT NULL,
  `attribute_label` varchar(200) DEFAULT NULL,
  `attribute_type` varchar(20) NOT NULL,
  `attribute_orderby` varchar(20) 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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_woocommerce_attribute_taxonomies`
--

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

--
-- Table structure for table `wpwn_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wpwn_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `order_key` varchar(200) NOT NULL,
  `user_email` varchar(200) NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) 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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_woocommerce_downloadable_product_permissions`
--

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

--
-- Table structure for table `wpwn_woocommerce_log`
--

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

--
-- Dumping data for table `wpwn_woocommerce_log`
--

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

--
-- Table structure for table `wpwn_woocommerce_order_itemmeta`
--

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

--
-- Dumping data for table `wpwn_woocommerce_order_itemmeta`
--

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

--
-- Table structure for table `wpwn_woocommerce_order_items`
--

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

--
-- Dumping data for table `wpwn_woocommerce_order_items`
--

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

--
-- Table structure for table `wpwn_woocommerce_payment_tokenmeta`
--

DROP TABLE IF EXISTS `wpwn_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_token_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_woocommerce_payment_tokenmeta`
--

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

--
-- Table structure for table `wpwn_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wpwn_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) NOT NULL,
  `token` text NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `type` varchar(200) 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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_woocommerce_payment_tokens`
--

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

--
-- Table structure for table `wpwn_woocommerce_sessions`
--

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

--
-- Dumping data for table `wpwn_woocommerce_sessions`
--

LOCK TABLES `wpwn_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wpwn_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wpwn_woocommerce_sessions` VALUES
(4,'1','a:8:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:763:\"a:27:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:25:\"2021-08-31T23:46:43+00:00\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"CA\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"CA\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:16:\"tiana@burtmg.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";}\";s:21:\"chosen_payment_method\";s:0:\"\";}',1630626514);
/*!40000 ALTER TABLE `wpwn_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpwn_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wpwn_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) NOT NULL,
  `location_type` varchar(40) 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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_woocommerce_shipping_zone_locations`
--

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

--
-- Table structure for table `wpwn_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wpwn_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) 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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_woocommerce_shipping_zone_methods`
--

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

--
-- Table structure for table `wpwn_woocommerce_shipping_zones`
--

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

--
-- Dumping data for table `wpwn_woocommerce_shipping_zones`
--

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

--
-- Table structure for table `wpwn_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wpwn_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) 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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_woocommerce_tax_rate_locations`
--

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

--
-- Table structure for table `wpwn_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wpwn_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `wpwn_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) NOT NULL DEFAULT '',
  `tax_rate` varchar(8) NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) 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) 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_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpwn_woocommerce_tax_rates`
--

LOCK TABLES `wpwn_woocommerce_tax_rates` WRITE;
/*!40000 ALTER TABLE `wpwn_woocommerce_tax_rates` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpwn_woocommerce_tax_rates` 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 */;
/*M!100616 SET NOTE_VERBOSITY=@OLD_NOTE_VERBOSITY */;

-- Dump completed on 2026-02-06 20:09:46
